FileCheckize this test.

llvm-svn: 137671
This commit is contained in:
Eric Christopher 2011-08-15 22:48:14 +00:00
parent 2c7f4f133f
commit d9afc5c749
1 changed files with 8 additions and 1 deletions

View File

@ -1,8 +1,15 @@
// RUN: %clang_cc1 -fexceptions -emit-llvm %s -o - | grep nounwind | count 4
// RUN: %clang_cc1 -fexceptions -emit-llvm %s -o - | FileCheck %s
int c(void) __attribute__((const));
int p(void) __attribute__((pure));
int t(void);
// CHECK: define i32 @_Z1fv() {
int f(void) {
// CHECK: call i32 @_Z1cv() nounwind readnone
// CHECK: call i32 @_Z1pv() nounwind readonly
return c() + p() + t();
}
// CHECK: declare i32 @_Z1cv() nounwind readnone
// CHECK: declare i32 @_Z1pv() nounwind readonly
// CHECK-NOT: declare i32 @_Z1tv() nounwind