summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/member-pointer-cast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/member-pointer-cast.cpp')
-rw-r--r--test/CodeGenCXX/member-pointer-cast.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/CodeGenCXX/member-pointer-cast.cpp b/test/CodeGenCXX/member-pointer-cast.cpp
deleted file mode 100644
index 4937b03..0000000
--- a/test/CodeGenCXX/member-pointer-cast.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// RUN: %clang_cc1 %s -emit-llvm -o - -triple=x86_64-apple-darwin9 | FileCheck %s
-
-struct A { int a; };
-struct B { int b; };
-struct C : B, A { };
-
-int A::*pa;
-int C::*pc;
-
-void f() {
- // CHECK: store i64 -1, i64* @pa
- pa = 0;
-
- // CHECK: [[ADJ:%[a-zA-Z0-9\.]+]] = add i64 {{.*}}, 4
- // CHECK: store i64 [[ADJ]], i64* @pc
- pc = pa;
-
- // CHECK: [[ADJ:%[a-zA-Z0-9\.]+]] = sub i64 {{.*}}, 4
- // CHECK: store i64 [[ADJ]], i64* @pa
- pa = static_cast<int A::*>(pc);
-}
OpenPOWER on IntegriCloud