diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-03-17 03:06:07 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-03-17 03:06:07 +0000 |
commit | 61c74a14239b26856629dbdcdbb29b026626d157 (patch) | |
tree | 4b05d2bef08aa24802d36709195008e143f2b1c7 /clang/test/Sema/uninit-variables.c | |
parent | 881e1871ddcd470ba9058432b83a6a5de645c43a (diff) | |
download | bcm5719-llvm-61c74a14239b26856629dbdcdbb29b026626d157.tar.gz bcm5719-llvm-61c74a14239b26856629dbdcdbb29b026626d157.zip |
Rename -Wuninitialized-maybe to -Wconditional-uninitialized.
llvm-svn: 127793
Diffstat (limited to 'clang/test/Sema/uninit-variables.c')
-rw-r--r-- | clang/test/Sema/uninit-variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/uninit-variables.c b/clang/test/Sema/uninit-variables.c index f6933e0c4bd..85e6394edac 100644 --- a/clang/test/Sema/uninit-variables.c +++ b/clang/test/Sema/uninit-variables.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -Wuninitialized -Wuninitialized-maybe -fsyntax-only -fblocks %s -verify +// RUN: %clang_cc1 -fsyntax-only -Wuninitialized -Wconditional-uninitialized -fsyntax-only -fblocks %s -verify int test1() { int x; // expected-note{{variable 'x' is declared here}} expected-note{{add initialization to silence this warning}} |