diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-16 19:18:40 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-16 19:18:40 +0000 |
commit | 7dd4490e47a5348d3f5c6e05946f84666eceaec7 (patch) | |
tree | 630ba933fdfecc8c9d58575a42ab06b35b7f60b4 | |
parent | 16006c901315fa12a108b4e571f187f4b676e426 (diff) |
Fix test case to unbreak testing
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/value-init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/value-init.cpp b/test/CodeGenCXX/value-init.cpp index decfc18e59..8b6e43fd8e 100644 --- a/test/CodeGenCXX/value-init.cpp +++ b/test/CodeGenCXX/value-init.cpp @@ -19,7 +19,7 @@ void test_value_init() { // CHECK: store i32 17 // CHECK: call void @llvm.memset.i64 - // CHECK: call void @_ZN1BC1Ev(%struct.A* %tmp1) + // CHECK: call void @_ZN1BC1Ev C c = { 17 } ; - // CHECK: call void @_ZN1CD1Ev(%struct.C* %c) + // CHECK: call void @_ZN1CD1Ev } |