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 | 584b9d6bd0ce199787900695fe75528fcde405fe (patch) | |
tree | 736ce6af93cf2a50e74f70db4f243a960225935f /test/SemaCXX/uninit-variables-conditional.cpp | |
parent | f04eb2de1f17dce4dfaebbf9002844087b7d357d (diff) |
Switch 'is possibly uninitialized' to 'may be uninitialized' based on
Chris's feedback.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/uninit-variables-conditional.cpp')
-rw-r--r-- | test/SemaCXX/uninit-variables-conditional.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/uninit-variables-conditional.cpp b/test/SemaCXX/uninit-variables-conditional.cpp index 257a9b575f..3324215621 100644 --- a/test/SemaCXX/uninit-variables-conditional.cpp +++ b/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}} } |