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}}
 }