aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/default-constructor-default-argument.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2010-01-02 01:01:18 +0000
committerAnders Carlsson <andersca@mac.com>2010-01-02 01:01:18 +0000
commite36a6b3e44915d1305fa578b16ed0d815ec1b19c (patch)
treec926efc1be678dc96621d09c6288cc37c87d6083 /clang/test/CodeGenCXX/default-constructor-default-argument.cpp
parent2e4be2c34042d2f0150a0c92f091043580a8cbaf (diff)
downloadllvm-e36a6b3e44915d1305fa578b16ed0d815ec1b19c.zip
llvm-e36a6b3e44915d1305fa578b16ed0d815ec1b19c.tar.gz
llvm-e36a6b3e44915d1305fa578b16ed0d815ec1b19c.tar.bz2
Correctly pass VTT parameters to constructors and destructors. The VTTs aren't yet used in the ctors/dtors, but that will follow.
llvm-svn: 92409
Diffstat (limited to 'clang/test/CodeGenCXX/default-constructor-default-argument.cpp')
-rw-r--r--clang/test/CodeGenCXX/default-constructor-default-argument.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/default-constructor-default-argument.cpp b/clang/test/CodeGenCXX/default-constructor-default-argument.cpp
index 971757d..f2c7f6d 100644
--- a/clang/test/CodeGenCXX/default-constructor-default-argument.cpp
+++ b/clang/test/CodeGenCXX/default-constructor-default-argument.cpp
@@ -5,4 +5,4 @@ struct A { A(int x = 2); };
struct B : public A {};
B x;
-// CHECK: call void @_ZN1AC1Ei
+// CHECK: call void @_ZN1AC2Ei