diff options
| author | Nikita Popov <npopov@redhat.com> | 2022-02-21 11:21:23 +0100 |
|---|---|---|
| committer | Nikita Popov <npopov@redhat.com> | 2022-05-25 17:29:37 +0200 |
| commit | 4d7ff4e5096625b56f154fa485a1af9351c41b5c (patch) | |
| tree | 3accd67d92f1ed24fa40659753d104e198a0df35 /src/test/codegen/function-arguments-noopt.rs | |
| parent | ebc8ab1e4e678202977e17a34313a98e7e899ed3 (diff) | |
| download | rust-4d7ff4e5096625b56f154fa485a1af9351c41b5c.tar.gz rust-4d7ff4e5096625b56f154fa485a1af9351c41b5c.zip | |
Update some codegen tests for opaque pointers
Diffstat (limited to 'src/test/codegen/function-arguments-noopt.rs')
| -rw-r--r-- | src/test/codegen/function-arguments-noopt.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/codegen/function-arguments-noopt.rs b/src/test/codegen/function-arguments-noopt.rs index 94561288dc5..ff76405a4ea 100644 --- a/src/test/codegen/function-arguments-noopt.rs +++ b/src/test/codegen/function-arguments-noopt.rs @@ -23,7 +23,7 @@ pub fn boolean_call(x: bool, f: fn(bool) -> bool) -> bool { f(x) } -// CHECK: align 4 i32* @borrow(i32* align 4 %x) +// CHECK: align 4 {{i32\*|ptr}} @borrow({{i32\*|ptr}} align 4 %x) #[no_mangle] pub fn borrow(x: &i32) -> &i32 { x @@ -32,11 +32,11 @@ pub fn borrow(x: &i32) -> &i32 { // CHECK-LABEL: @borrow_call #[no_mangle] pub fn borrow_call(x: &i32, f: fn(&i32) -> &i32) -> &i32 { - // CHECK: call align 4 i32* %f(i32* align 4 %x) + // CHECK: call align 4 {{i32\*|ptr}} %f({{i32\*|ptr}} align 4 %x) f(x) } -// CHECK: void @struct_(%S* sret(%S){{( %0)?}}, %S* %x) +// CHECK: void @struct_({{%S\*|ptr}} sret(%S){{( %0)?}}, {{%S\*|ptr}} %x) #[no_mangle] pub fn struct_(x: S) -> S { x @@ -45,7 +45,7 @@ pub fn struct_(x: S) -> S { // CHECK-LABEL: @struct_call #[no_mangle] pub fn struct_call(x: S, f: fn(S) -> S) -> S { - // CHECK: call void %f(%S* sret(%S){{( %0)?}}, %S* %{{.+}}) + // CHECK: call void %f({{%S\*|ptr}} sret(%S){{( %0)?}}, {{%S\*|ptr}} %{{.+}}) f(x) } |
