diff options
Diffstat (limited to 'clang/test/SemaCXX/uninit-variables.cpp')
-rw-r--r-- | clang/test/SemaCXX/uninit-variables.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaCXX/uninit-variables.cpp b/clang/test/SemaCXX/uninit-variables.cpp index 572e0aac81e..cc5018a5e86 100644 --- a/clang/test/SemaCXX/uninit-variables.cpp +++ b/clang/test/SemaCXX/uninit-variables.cpp @@ -33,11 +33,11 @@ unsigned test3_b() { return x; // no-warning } unsigned test3_c() { - unsigned x ; // expected-warning{{use of uninitialized variable 'x'}} expected-note{{add initialization to silence this warning}} + unsigned x; // expected-note{{declared here}} expected-note{{add initialization}} const bool flag = false; if (flag && (x = test3_aux()) == 0) { x = 1; } - return x; // expected-note{{variable 'x' is possibly uninitialized when used here}} + return x; // expected-warning{{variable 'x' is possibly uninitialized when used here}} } |