summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2014-12-29 02:14:26 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2014-12-29 02:14:26 +0000
commit86330afd355b8b31ae3b19e6d636dd3ce26d5ad6 (patch)
tree1abedbaccb336bec085b608c151e538080dcb4e0 /clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp
parent90d854489fde7718c1a796c5b96f48d3a2e8dab6 (diff)
downloadbcm5719-llvm-86330afd355b8b31ae3b19e6d636dd3ce26d5ad6.tar.gz
bcm5719-llvm-86330afd355b8b31ae3b19e6d636dd3ce26d5ad6.zip
SemaCXX: Don't crash when annotation tokens show up before the tag name
Clang has a hack to accept definitions of structs with tag names which have the same name as intrinsics. However, this hack didn't guard against annotation tokens showing up in the token stream. llvm-svn: 224909
Diffstat (limited to 'clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp')
-rw-r--r--clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp b/clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp
index 1ba3721c8c2..8d187124f01 100644
--- a/clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp
+++ b/clang/test/SemaCXX/libstdcxx_is_pod_hack.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fsyntax-only %s
+// RUN: %clang_cc1 -fsyntax-only -verify %s
// This is a test for an egregious hack in Clang that works around
// issues with GCC's evolution. libstdc++ 4.2.x uses __is_pod as an
@@ -7,7 +7,7 @@
// a keyword *unless* it is introduced following the struct keyword.
template<typename T>
-struct __is_pod {
+struct __is_pod { // expected-warning {{keyword '__is_pod' will be made available as an identifier}}
__is_pod() {}
};
@@ -15,7 +15,7 @@ __is_pod<int> ipi;
// Ditto for __is_same.
template<typename T>
-struct __is_same {
+struct __is_same { // expected-warning {{keyword '__is_same' will be made available as an identifier}}
};
__is_same<int> isi;
@@ -24,7 +24,7 @@ __is_same<int> isi;
// trait in Embarcadero's compiler but is used as an identifier in
// libstdc++.
struct test_is_signed {
- static const bool __is_signed = true;
+ static const bool __is_signed = true; // expected-warning {{keyword '__is_signed' will be made available as an identifier}}
};
bool check_signed = test_is_signed::__is_signed;
@@ -36,6 +36,13 @@ void foo() {
bool b = __is_pod(int);
must_be_true<__is_pod(int)> mbt;
}
+
+// expected-warning@+1 {{declaration does not declare anything}}
+struct // expected-error {{declaration of anonymous struct must be a definition}}
+#pragma pack(pop)
+ S {
+};
+
#if !__has_feature(is_pod)
# error __is_pod should still be available.
#endif
OpenPOWER on IntegriCloud