aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGenCXX/value-init.cpp4
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
}