File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/Interop/Cxx/reference Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,28 +36,28 @@ public func setCxxRef() {
36
36
}
37
37
38
38
// CHECK: define {{(protected |dllexport )?}}swiftcc void @"$s4main9setCxxRefyyF"()
39
- // CHECK: call void @{{_Z15setStaticIntRefRi|"\?setStaticIntRef@@YAXAEAH@Z"}}(i32* {{nonnull %val|%2 }})
39
+ // CHECK: call void @{{_Z15setStaticIntRefRi|"\?setStaticIntRef@@YAXAEAH@Z"}}(i32* %{{.* }})
40
40
41
41
public func setCxxConstRef( ) {
42
42
var val : CInt = 21
43
43
setConstStaticIntRef ( & val)
44
44
}
45
45
46
46
// CHECK: define {{(protected |dllexport )?}}swiftcc void @"$s4main14setCxxConstRefyyF"()
47
- // CHECK: call void @{{_Z20setConstStaticIntRefRKi|"\?setConstStaticIntRef@@YAXAEBH@Z"}}(i32* {{nonnull %val|%2 }})
47
+ // CHECK: call void @{{_Z20setConstStaticIntRefRKi|"\?setConstStaticIntRef@@YAXAEBH@Z"}}(i32* %{{.* }})
48
48
49
49
public func setCxxRvalueRef( ) {
50
50
var val : CInt = 21
51
51
setStaticIntRvalueRef ( & val)
52
52
}
53
53
54
54
// CHECK: define {{(protected |dllexport )?}}swiftcc void @"$s4main15setCxxRvalueRefyyF"()
55
- // CHECK: call void @{{_Z21setStaticIntRvalueRefOi|"\?setStaticIntRvalueRef@@YAX\$\$QEAH@Z"}}(i32* {{nonnull %val|%2 }})
55
+ // CHECK: call void @{{_Z21setStaticIntRvalueRefOi|"\?setStaticIntRvalueRef@@YAX\$\$QEAH@Z"}}(i32* %{{.* }})
56
56
57
57
public func setCxxConstRvalueRef( ) {
58
58
var val : CInt = 21
59
59
setConstStaticIntRvalueRef ( & val)
60
60
}
61
61
62
62
// CHECK: define {{(protected |dllexport )?}}swiftcc void @"$s4main20setCxxConstRvalueRefyyF"()
63
- // CHECK: call void @{{_Z26setConstStaticIntRvalueRefOKi|"\?setConstStaticIntRvalueRef@@YAX\$\$QEBH@Z"}}(i32* {{nonnull %val|%2 }})
63
+ // CHECK: call void @{{_Z26setConstStaticIntRvalueRefOKi|"\?setConstStaticIntRvalueRef@@YAX\$\$QEBH@Z"}}(i32* %{{.* }})
You can’t perform that action at this time.
0 commit comments