aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/line-directive.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-27 00:41:01 +0000
committerChris Lattner <sabre@nondot.org>2009-04-27 00:41:01 +0000
commit04ad9b278c27319e873e9f6ccf991f68f5fcc8a3 (patch)
treec850f92280a027ff950c184e000ae27f56f9c7d7 /test/Preprocessor/line-directive.c
parent2f4efd10c805cb779618c1a22a35eb07b5043c4e (diff)
make -Wtypedef-redefinition an extwarn instead of defaulting
to error, doing this breaks too many programs (e.g. Adium). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70170 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/line-directive.c')
-rw-r--r--test/Preprocessor/line-directive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Preprocessor/line-directive.c b/test/Preprocessor/line-directive.c
index a9ed4bcf8c..53e9ab7b5d 100644
--- a/test/Preprocessor/line-directive.c
+++ b/test/Preprocessor/line-directive.c
@@ -41,7 +41,7 @@
# 192 "glomp.h" // not a system header.
typedef int x; // expected-note {{previous definition is here}}
-typedef int x; // expected-error {{redefinition of typedef 'x' is invalid in C}}
+typedef int x; // expected-warning {{redefinition of typedef 'x' is invalid in C}}
# 192 "glomp.h" 3 // System header.
typedef int y; // ok
@@ -60,7 +60,7 @@ typedef int z1; // ok
# 42 "blonk.h" // DOES change system headerness.
typedef int w; // expected-note {{previous definition is here}}
-typedef int w; // expected-error {{redefinition of typedef 'w' is invalid in C}}
+typedef int w; // expected-warning {{redefinition of typedef 'w' is invalid in C}}
// This should not produce an "extra tokens at end of #line directive" warning,