summaryrefslogtreecommitdiff
path: root/test/SemaCXX/undefined-internal.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2012-02-04 00:54:05 +0000
committerEli Friedman <eli.friedman@gmail.com>2012-02-04 00:54:05 +0000
commit0cc5d40e5cb0af88c5487ac660ed259eb2b434ae (patch)
tree791cfe0a7d242ac180fd0216eb57bc2acfdadaf1 /test/SemaCXX/undefined-internal.cpp
parent5ba73e1af8ef519161bd40063dc325457e21676a (diff)
downloadclang-0cc5d40e5cb0af88c5487ac660ed259eb2b434ae.tar.gz
Suppress the used-but-not-defined warning for static data members while I look into a rather nasty bug in the new odr-use marking code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149731 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/undefined-internal.cpp')
-rw-r--r--test/SemaCXX/undefined-internal.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/SemaCXX/undefined-internal.cpp b/test/SemaCXX/undefined-internal.cpp
index 6fe64b8ced..a253020b8e 100644
--- a/test/SemaCXX/undefined-internal.cpp
+++ b/test/SemaCXX/undefined-internal.cpp
@@ -134,12 +134,15 @@ 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; // expected-warning {{internal linkage}}
- static const int used2 = 20; // expected-warning {{internal linkage}}
+ static const int used1 = 20; // xpected-warning {{internal linkage}}
+ static const int used2 = 20; // xpected-warning {{internal linkage}}
virtual ~A() {}
};
}
@@ -160,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)); // expected-note {{used here}}
+ (void)typeid(p(A::used1)); // xpected-note {{used here}}
// Misc other testing
- a(A::unused, 1 ? A::used2 : A::used2); // expected-note {{used here}}
+ a(A::unused, 1 ? A::used2 : A::used2); // xpected-note {{used here}}
b();
}
}