blob: 401e7433054cbf72f3eaf24d8c8661be9db779e9 [file] [log] [blame]
Fariborz Jahanian27262672011-01-20 17:19:02 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fapple-kext -emit-llvm -o - %s | FileCheck %s
2
3struct Base {
4 virtual void abc1(void) const;
5 virtual void abc2(void) const;
6 virtual void abc(void) const;
7};
8
9void Base::abc(void) const {}
10
11void FUNC(Base* p) {
12 p->Base::abc();
13}
14
15// CHECK-NOT: call void @_ZNK4Base3abcEv