diff options
author | Anders Carlsson <andersca@mac.com> | 2010-03-24 16:42:11 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-03-24 16:42:11 +0000 |
commit | e90954de64fad56dfb6fa258a59c5fcd70c22afd (patch) | |
tree | 2ad8d99319fd8f2946025886ec37263da41ee139 /clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp | |
parent | 07607382d887a39d509143f2698c69581ead12bb (diff) | |
download | bcm5719-llvm-e90954de64fad56dfb6fa258a59c5fcd70c22afd.tar.gz bcm5719-llvm-e90954de64fad56dfb6fa258a59c5fcd70c22afd.zip |
More vtable improvements. We now compute and keep track of all vtable related information which avoids computing the same vtable layout over and over.
llvm-svn: 99403
Diffstat (limited to 'clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp index 4d40372a56b..2f7c79b9030 100644 --- a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp +++ b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp @@ -4,4 +4,4 @@ struct A { virtual void a(); }; A x(A& y) { return y; } // CHECK: define linkonce_odr void @_ZN1AC1ERKS_( -// CHECK: store i8** getelementptr inbounds ([0 x i8*]* @_ZTV1A, i64 0, i64 2) +// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1A, i64 0, i64 2) |