commit | 584b9d6bd0ce199787900695fe75528fcde405fe | [log] [tgz] |
---|---|---|
author | Chandler Carruth <chandlerc@gmail.com> | Fri Apr 08 06:47:15 2011 +0000 |
committer | Chandler Carruth <chandlerc@gmail.com> | Fri Apr 08 06:47:15 2011 +0000 |
tree | 736ce6af93cf2a50e74f70db4f243a960225935f | |
parent | f04eb2de1f17dce4dfaebbf9002844087b7d357d [diff] [blame] |
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
diff --git a/test/SemaCXX/uninit-variables-conditional.cpp b/test/SemaCXX/uninit-variables-conditional.cpp index 257a9b5..3324215 100644 --- a/test/SemaCXX/uninit-variables-conditional.cpp +++ b/test/SemaCXX/uninit-variables-conditional.cpp
@@ -19,5 +19,5 @@ 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}} }