diff options
| author | Josh Stone <jistone@redhat.com> | 2023-07-27 14:44:13 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2023-07-27 14:44:13 -0700 |
| commit | da47736f42307e450a447889ebc563cddaf93ac2 (patch) | |
| tree | b30095a49c9b920d9cdb24e0180cabab57676847 /tests/codegen/align-enum.rs | |
| parent | 190ded84434f435b9626a07278b9ed0e7603bd11 (diff) | |
| download | rust-da47736f42307e450a447889ebc563cddaf93ac2.tar.gz rust-da47736f42307e450a447889ebc563cddaf93ac2.zip | |
CHECK only for opaque ptr
Diffstat (limited to 'tests/codegen/align-enum.rs')
| -rw-r--r-- | tests/codegen/align-enum.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/align-enum.rs b/tests/codegen/align-enum.rs index 70f09ace006..5901f0113c3 100644 --- a/tests/codegen/align-enum.rs +++ b/tests/codegen/align-enum.rs @@ -20,7 +20,7 @@ pub struct Nested64 { #[no_mangle] pub fn align64(a: u32) -> Align64 { // CHECK: %a64 = alloca %Align64, align 64 -// CHECK: call void @llvm.memcpy.{{.*}}({{i8\*|ptr}} align 64 %{{.*}}, {{i8\*|ptr}} align 64 %{{.*}}, i{{[0-9]+}} 64, i1 false) +// CHECK: call void @llvm.memcpy.{{.*}}(ptr align 64 %{{.*}}, ptr align 64 %{{.*}}, i{{[0-9]+}} 64, i1 false) let a64 = Align64::A(a); a64 } |
