Skip to content

Commit f147303

Browse files
fix tests on platforms where Align16 is represented as i128
1 parent 69ae423 commit f147303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/codegen/loads.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn load_ref<'a>(x: &&'a i32) -> &'a i32 {
3535
// CHECK-LABEL: @load_ref_higher_alignment
3636
#[no_mangle]
3737
pub fn load_ref_higher_alignment<'a>(x: &&'a Align16) -> &'a Align16 {
38-
// CHECK: load %Align16*, %Align16** %x, align [[PTR_ALIGNMENT]], !nonnull !{{[0-9]+}}, !align ![[ALIGN_16_META:[0-9]+]], !noundef !{{[0-9]+}}
38+
// CHECK: load {{%Align16|i128}}*, {{%Align16|i128}}** %x, align [[PTR_ALIGNMENT]], !nonnull !{{[0-9]+}}, !align ![[ALIGN_16_META:[0-9]+]], !noundef !{{[0-9]+}}
3939
*x
4040
}
4141

0 commit comments

Comments
 (0)