summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/undef-error.c
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2012-06-06 17:25:21 +0000
committerJordan Rose <jordan_rose@apple.com>2012-06-06 17:25:21 +0000
commitccf43ca05cb1540f3d95a73b7b329bf926808c7b (patch)
treef1c81126e272ce660655dd437fa5dbf9d058f303 /clang/test/Preprocessor/undef-error.c
parentfaa389462835ab40ed8af86eb32c44abfcf4e48a (diff)
downloadbcm5719-llvm-ccf43ca05cb1540f3d95a73b7b329bf926808c7b.tar.gz
bcm5719-llvm-ccf43ca05cb1540f3d95a73b7b329bf926808c7b.zip
Add pedantic warning -Wempty-translation-unit (C11 6.9p1).
In standard C since C89, a 'translation-unit' is syntactically defined to have at least one "external-declaration", which is either a decl or a function definition. In Clang the latter gives us a declaration as well. The tricky bit about this warning is that our predefines can contain external declarations (__builtin_va_list and the 128-bit integer types). Therefore our AST parser now makes sure we have at least one declaration that doesn't come from the predefines buffer. Also, remove bogus warning about empty source files. This doesn't catch source files that only contain comments, and never fired anyway because of our predefines. PR12665 and <rdar://problem/9165548> llvm-svn: 158085
Diffstat (limited to 'clang/test/Preprocessor/undef-error.c')
-rw-r--r--clang/test/Preprocessor/undef-error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Preprocessor/undef-error.c b/clang/test/Preprocessor/undef-error.c
index ad611decedd..959c163e031 100644
--- a/clang/test/Preprocessor/undef-error.c
+++ b/clang/test/Preprocessor/undef-error.c
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 %s -pedantic-errors -verify
+// RUN: %clang_cc1 %s -pedantic-errors -Wno-empty-translation-unit -verify
// PR2045
#define b
OpenPOWER on IntegriCloud