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, 14 insertions, 0 deletions
diff --git a/test/CodeGenCXX/apple-kext-indirect-call.C b/test/CodeGenCXX/apple-kext-indirect-call.C
new file mode 100644
index 000000000000..2dbb0b83954d
--- /dev/null
+++ b/test/CodeGenCXX/apple-kext-indirect-call.C
@@ -0,0 +1,14 @@
+// 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