diff options
author | Richard Trieu <rtrieu@google.com> | 2014-09-25 01:15:40 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2014-09-25 01:15:40 +0000 |
commit | 52b8b60d4c6f863db63ef747013dd119169557a2 (patch) | |
tree | 9affc116592ef6b016a08438439a9e3f65858db1 /clang/test/SemaCXX/decl-init-ref.cpp | |
parent | a577bc26b6141673b1bf4a339953ab2c04b34a8d (diff) | |
download | bcm5719-llvm-52b8b60d4c6f863db63ef747013dd119169557a2.tar.gz bcm5719-llvm-52b8b60d4c6f863db63ef747013dd119169557a2.zip |
Add increment/decrement operators and compound assignment operators to the
uninitialized checkers that did not have them before.
llvm-svn: 218435
Diffstat (limited to 'clang/test/SemaCXX/decl-init-ref.cpp')
-rw-r--r-- | clang/test/SemaCXX/decl-init-ref.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/decl-init-ref.cpp b/clang/test/SemaCXX/decl-init-ref.cpp index 2d0c9cb4ffb..42b9286852c 100644 --- a/clang/test/SemaCXX/decl-init-ref.cpp +++ b/clang/test/SemaCXX/decl-init-ref.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s +// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s -Wno-uninitialized struct A {}; |