aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/apple-kext-indirect-call.C
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/apple-kext-indirect-call.C')
-rw-r--r--test/CodeGenCXX/apple-kext-indirect-call.C14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGenCXX/apple-kext-indirect-call.C b/test/CodeGenCXX/apple-kext-indirect-call.C
deleted file mode 100644
index 2dbb0b83954d..000000000000
--- a/test/CodeGenCXX/apple-kext-indirect-call.C
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fapple-kext -emit-llvm -o - %s | FileCheck %s
-
-struct Base {
- virtual void abc(void) const;
-};
-
-void Base::abc(void) const {}
-
-void FUNC(Base* p) {
- p->Base::abc();
-}
-
-// CHECK: getelementptr inbounds (void (%struct.Base*)** bitcast ([3 x i8*]* @_ZTV4Base to void (%struct.Base*)**), i64 2)
-// CHECK-NOT: call void @_ZNK4Base3abcEv