diff options
author | Alp Toker <alp@nuanti.com> | 2014-06-01 18:49:32 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-06-01 18:49:32 +0000 |
commit | 71c53d472f4abb6803763848a488193057c56985 (patch) | |
tree | dd2568e46c8f9b60759c4ed7ef8d68e01d24e1d7 /clang/test/SemaCXX/undefined-internal.cpp | |
parent | c2d5e611778d82b67a7fd0150f6aa4bed6b81a23 (diff) | |
download | bcm5719-llvm-71c53d472f4abb6803763848a488193057c56985.tar.gz bcm5719-llvm-71c53d472f4abb6803763848a488193057c56985.zip |
Fix the undefined-but-used odr-use marker (DR48)
We should treat tentative definitions as undefined for the purpose of
ODR-use linkage checking.
This broke somewhere around r149731 when tests were disabled.
Note that test coverage for these diagnostics is generally lacking due to a
separate issue (PR19910: Don't suppress unused/undefined warnings when there
are errors).
llvm-svn: 209996
Diffstat (limited to 'clang/test/SemaCXX/undefined-internal.cpp')
-rw-r--r-- | clang/test/SemaCXX/undefined-internal.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/clang/test/SemaCXX/undefined-internal.cpp b/clang/test/SemaCXX/undefined-internal.cpp index 1cb0708a532..7f81ac9feba 100644 --- a/clang/test/SemaCXX/undefined-internal.cpp +++ b/clang/test/SemaCXX/undefined-internal.cpp @@ -137,15 +137,12 @@ namespace cxx11_odr_rules { // // Note that the warning in question can trigger in cases some people would // consider false positives; hopefully that happens rarely in practice. - // - // FIXME: Suppressing this test while I figure out how to fix a bug in the - // odr-use marking code. namespace { struct A { static const int unused = 10; - static const int used1 = 20; // xpected-warning {{internal linkage}} - static const int used2 = 20; // xpected-warning {{internal linkage}} + static const int used1 = 20; // expected-warning {{internal linkage}} + static const int used2 = 20; // expected-warning {{internal linkage}} virtual ~A() {} }; } @@ -166,10 +163,10 @@ namespace cxx11_odr_rules { // Check that the checks work with unevaluated contexts (void)sizeof(p(A::used1)); - (void)typeid(p(A::used1)); // xpected-note {{used here}} + (void)typeid(p(A::used1)); // expected-note {{used here}} // Misc other testing - a(A::unused, 1 ? A::used2 : A::used2); // xpected-note {{used here}} + a(A::unused, 1 ? A::used2 : A::used2); // expected-note {{used here}} b(); } } |