diff options
author | David Bolvansky <david.bolvansky@gmail.com> | 2019-10-01 18:18:45 +0000 |
---|---|---|
committer | David Bolvansky <david.bolvansky@gmail.com> | 2019-10-01 18:18:45 +0000 |
commit | 1f345cb05d82c6502ea3ee753e851adc76e30d7a (patch) | |
tree | 2c54726b6eac65b45276fe0c6ef39df24cccbb50 | |
parent | b9b8ca233458f67c14a1fe259dd507430cc85ab1 (diff) | |
download | bcm5719-llvm-1f345cb05d82c6502ea3ee753e851adc76e30d7a.tar.gz bcm5719-llvm-1f345cb05d82c6502ea3ee753e851adc76e30d7a.zip |
[NFC] Updated tests after rL373371
Forgot to run check-clang-semacxx.
llvm-svn: 373375
-rw-r--r-- | clang/test/SemaCXX/warn-sign-conversion.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/test/SemaCXX/warn-sign-conversion.cpp b/clang/test/SemaCXX/warn-sign-conversion.cpp index 3122a06f909..dcfb95b6b57 100644 --- a/clang/test/SemaCXX/warn-sign-conversion.cpp +++ b/clang/test/SemaCXX/warn-sign-conversion.cpp @@ -70,15 +70,11 @@ namespace test2 { int d1 = 1 ? i : Foo<bool>::D; // expected-warning {{operand of ? changes signedness: 'test2::Foo<bool>::Named4' to 'int'}} int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operand of ? changes signedness: 'test2::Foo<bool>::Named4' to 'int'}} int d3 = 1 ? B : Foo<bool>::D; // expected-warning {{operand of ? changes signedness: 'test2::Foo<bool>::Named4' to 'int'}} - // expected-warning@-1 {{enumeration type mismatch in conditional expression ('test2::Named2' and 'test2::Foo<bool>::Named4')}} int d4 = 1 ? Foo<bool>::D : B; // expected-warning {{operand of ? changes signedness: 'test2::Foo<bool>::Named4' to 'int'}} - // expected-warning@-1 {{enumeration type mismatch in conditional expression ('test2::Foo<bool>::Named4' and 'test2::Named2')}} int e1 = 1 ? i : E; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} int e2 = 1 ? E : i; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} int e3 = 1 ? E : B; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} - // expected-warning@-1 {{enumeration type mismatch in conditional expression ('test2::Named5' and 'test2::Named2')}} int e4 = 1 ? B : E; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} - // expected-warning@-1 {{enumeration type mismatch in conditional expression ('test2::Named2' and 'test2::Named5')}} } } |