diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-04-08 06:47:15 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-04-08 06:47:15 +0000 |
commit | 42983aef3497399630a64ff098361ab5f24b9691 (patch) | |
tree | 397e59c1f3cd4f4a0a572cc14c07324131460cc2 /clang/test/SemaCXX/uninit-variables-conditional.cpp | |
parent | 278f89732fca92ba9cd268698d5e586f09e4499f (diff) | |
download | bcm5719-llvm-42983aef3497399630a64ff098361ab5f24b9691.tar.gz bcm5719-llvm-42983aef3497399630a64ff098361ab5f24b9691.zip |
Switch 'is possibly uninitialized' to 'may be uninitialized' based on
Chris's feedback.
llvm-svn: 129127
Diffstat (limited to 'clang/test/SemaCXX/uninit-variables-conditional.cpp')
-rw-r--r-- | clang/test/SemaCXX/uninit-variables-conditional.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/uninit-variables-conditional.cpp b/clang/test/SemaCXX/uninit-variables-conditional.cpp index 257a9b575f1..3324215621b 100644 --- a/clang/test/SemaCXX/uninit-variables-conditional.cpp +++ b/clang/test/SemaCXX/uninit-variables-conditional.cpp @@ -19,5 +19,5 @@ double test() { if (bar() || baz() || Foo() || init(&x)) return 1.0; - return x; // expected-warning {{variable 'x' is possibly uninitialized when used here}} + return x; // expected-warning {{variable 'x' may be uninitialized when used here}} } |