diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-16 17:27:20 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-16 17:27:20 +0000 |
commit | 4b3e5be334c93c3f48af2a49c0ea7cd9bae2a0e5 (patch) | |
tree | d80e930c0c6b6dd379d55c636a3faa2c06fd7f67 /test/CodeGenCXX/virt.cpp | |
parent | 666183674f6e1b7e7530121f4897f77c43d2f741 (diff) |
Baby steps towards fixing PR5589. If a class needs a vtable pointer, add one.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91545 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/virt.cpp')
-rw-r--r-- | test/CodeGenCXX/virt.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGenCXX/virt.cpp b/test/CodeGenCXX/virt.cpp index 0acd264f18..259fd03e7a 100644 --- a/test/CodeGenCXX/virt.cpp +++ b/test/CodeGenCXX/virt.cpp @@ -147,12 +147,12 @@ void test12_foo() { } // CHECK-LPLL64:define void @_Z10test12_foov() nounwind { -// CHECK-LPLL64: call void %2(%class.test14* %tmp) -// CHECK-LPLL64: call void %5(%class.test14* %tmp1) -// CHECK-LPLL64: call void %8(%class.test14* %tmp3) -// CHECK-LPLL64: call void %11(%class.test14* %tmp5) -// CHECK-LPLL64: call void %14(%class.test14* %tmp7) -// CHECK-LPLL64: call void %17(%class.test14* %tmp9) +// CHECK-LPLL64: call void % +// CHECK-LPLL64: call void % +// CHECK-LPLL64: call void % +// CHECK-LPLL64: call void % +// CHECK-LPLL64: call void % +// CHECK-LPLL64: call void % // CHECK-LPLL64: call void @_ZN8test12_A3fooEv(%class.test14* %tmp11) |