Skip to content

Commit 58fdbd1

Browse files
committed
tests: fix overaligned-constant to not over-specify getelementptr instr
On LLVM 18 we get slightly different arguments here, so it's easier to just regex those away. The important details are all still asserted as I understand things. Fixes #119193. @rustbot label: +llvm-main
1 parent 767453e commit 58fdbd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/codegen/overaligned-constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn main() {
1717
// CHECK: [[full:%_.*]] = alloca %SmallStruct, align 8
1818
// CHECK: call void @llvm.memcpy.p0.p0.i64(ptr align 8 [[full]], ptr align 8 @0, i64 32, i1 false)
1919
// CHECK: %b.0 = load i32, ptr @0, align 4,
20-
// CHECK: %b.1 = load i32, ptr getelementptr inbounds ({ i32, i32 }, ptr @0, i32 0, i32 1), align 4
20+
// CHECK: %b.1 = load i32, ptr getelementptr inbounds ({{.*}}), align 4
2121
let mut s = S(1);
2222

2323
s.0 = 3;

0 commit comments

Comments
 (0)