aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C
diff options
context:
space:
mode:
authorBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
committerBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
commit1bc5aee63eb72b341f506ad058502cd0361f0d10 (patch)
treec607e8252f3405424ff15bc2d00aa38dadbb2518 /gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C
parent283a0bf58fcf333c58a2a92c3ebbc41fb9eb1fdb (diff)
downloadtoolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.gz
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.bz2
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.zip
Initial checkin of GCC 4.9.0 from trunk (r208799).
Change-Id: I48a3c08bb98542aa215912a75f03c0890e497dba
Diffstat (limited to 'gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C')
-rw-r--r--gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C67
1 files changed, 67 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C b/gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C
new file mode 100644
index 000000000..d4bdc212e
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C
@@ -0,0 +1,67 @@
+// { dg-do run }
+// Test rtti pointer flags
+// Copyright (C) 2000, 2002 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 15 Apr 2000 <nathan@nathan@codesourcery.com>
+
+#include <typeinfo>
+
+#if defined (__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100
+#include <cxxabi.h>
+
+struct A {int m;};
+struct B;
+
+using namespace abi;
+
+int expect (int flags, std::type_info const &info)
+{
+ abi::__pbase_type_info const *ptr =
+ dynamic_cast <abi::__pbase_type_info const *> (&info);
+ if (!ptr)
+ return 0;
+ if (ptr->__flags != flags)
+ return 0;
+ return 1;
+}
+
+int main ()
+{
+ if (! expect (0, typeid (A *)))
+ return 1;
+ if (! expect (1, typeid (A const *)))
+ return 2;
+ if (! expect (2, typeid (A volatile *)))
+ return 3;
+ if (! expect (4, typeid (A *__restrict__ *)))
+ return 4;
+ if (! expect (0, typeid (int A::*)))
+ return 5;
+ if (! expect (0, typeid (int A::**)))
+ return 6;
+
+ if (! expect (8 | 0, typeid (B *)))
+ return 11;
+ if (! expect (8 | 1, typeid (B const *)))
+ return 12;
+ if (! expect (8 | 2, typeid (B volatile *)))
+ return 13;
+ if (! expect (8 | 4, typeid (B *__restrict__ *)))
+ return 14;
+ if (! expect (16 | 0, typeid (int B::*)))
+ return 15;
+ if (! expect (8 | 0, typeid (int B::**)))
+ return 16;
+ if (! expect (8 | 0, typeid (B A::*)))
+ return 17;
+ if (! expect (24, typeid (B B::*)))
+ return 18;
+
+ return 0;
+}
+
+#else
+int main ()
+{
+ return 0;
+}
+#endif