diff options
Diffstat (limited to 'test/CodeGenCXX/virt-call-offsets.cpp')
-rw-r--r-- | test/CodeGenCXX/virt-call-offsets.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/CodeGenCXX/virt-call-offsets.cpp b/test/CodeGenCXX/virt-call-offsets.cpp deleted file mode 100644 index 5eef6fe..0000000 --- a/test/CodeGenCXX/virt-call-offsets.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s - -struct A { virtual void a(); }; -struct B : A {}; -struct C : B { virtual void a(); }; -void (C::*x)() = &C::a; - -// CHECK: @x = global { i{{[0-9]+}}, i{{[0-9]+}} } { i{{[0-9]+}} 1, i{{[0-9]+}} 0 } |