diff options
Diffstat (limited to 'test/Misc/pubnames.c')
-rw-r--r-- | test/Misc/pubnames.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/Misc/pubnames.c b/test/Misc/pubnames.c deleted file mode 100644 index 0304897..0000000 --- a/test/Misc/pubnames.c +++ /dev/null @@ -1,19 +0,0 @@ -// RUN: %clang_cc1 -pubnames-dump %s | FileCheck %s -#define FOO -#define BAR -#undef FOO -#define WIBBLE - -int foo(); -int bar(float); -int wibble; - -// CHECK: BAR -// CHECK-NOT: FOO -// CHECK: WIBBLE -// CHECK-NOT: __clang_major__ -// CHECK: bar -// CHECK: foo -// CHECK: wibble - - |