@@ -28,7 +28,7 @@ pub struct SmallStruct {
2828// CHECK-LABEL: call_arg_scope::test_call_with_single_arg
2929pub fn test_call_with_single_arg ( s : LargeStruct ) {
3030 // CHECK: call void @llvm.memcpy{{.*}}, !dbg ![[#CALL1_ARG_LOC:]]
31- // CHECK: call {{.*}}@{{.*}}helper_single{{.*}}({{.*}}), !dbg ![[#CALL1_LOC:]]
31+ // CHECK: call {{.*}}@{{.*}}helper_single{{.*}}({{.*}}){{.*}} , !dbg ![[#CALL1_LOC:]]
3232 helper_single ( s) ;
3333}
3434
@@ -43,7 +43,7 @@ fn helper_single(_s: LargeStruct) {}
4343pub fn test_call_with_multiple_args ( large : LargeStruct , medium : MediumStruct , small : SmallStruct ) {
4444 // CHECK: call void @llvm.memcpy{{.*}}, !dbg ![[#CALL2_ARG1_LOC:]]
4545 // CHECK: call void @llvm.memcpy{{.*}}, !dbg ![[#CALL2_ARG2_LOC:]]
46- // CHECK: call {{.*}}@{{.*}}helper_multiple{{.*}}({{.*}}), !dbg ![[#CALL2_LOC:]]
46+ // CHECK: call {{.*}}@{{.*}}helper_multiple{{.*}}({{.*}}){{.*}} , !dbg ![[#CALL2_LOC:]]
4747 helper_multiple ( large, medium, small) ;
4848}
4949
@@ -67,7 +67,7 @@ pub fn test_return_large_value() -> LargeStruct {
6767
6868// CHECK-LABEL: call_arg_scope::test_call_returning_large
6969pub fn test_call_returning_large ( ) {
70- // CHECK: call {{.*}}@{{.*}}make_large_struct{{.*}}({{.*}}), !dbg ![[#CALL3_LOC:]]
70+ // CHECK: call {{.*}}@{{.*}}make_large_struct{{.*}}({{.*}}){{.*}} , !dbg ![[#CALL3_LOC:]]
7171 let _result = make_large_struct ( ) ;
7272}
7373
@@ -82,7 +82,7 @@ fn make_large_struct() -> LargeStruct {
8282
8383// CHECK-LABEL: call_arg_scope::test_mixed_call
8484pub fn test_mixed_call ( input : LargeStruct ) -> LargeStruct {
85- // CHECK: call {{.*}}@{{.*}}transform_large{{.*}}({{.*}}), !dbg ![[#CALL4_LOC:]]
85+ // CHECK: call {{.*}}@{{.*}}transform_large{{.*}}({{.*}}){{.*}} , !dbg ![[#CALL4_LOC:]]
8686 transform_large ( input)
8787}
8888
0 commit comments