Skip to content

Commit eaab8b5

Browse files
authored
Unrolled build for rust-lang#119523
Rollup merge of rust-lang#119523 - maurer:fix-sparc-llvm-18, r=nikic llvm: Allow `noundef` in codegen tests LLVM 18 will automatically infer `noundef` in some situations. Adjust codegen tests to accept this. See llvm/llvm-project#76553 for why `noundef` is being generated now. ``@rustbot`` label:+llvm-main
2 parents 1a47f5b + ee86b1f commit eaab8b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/codegen/abi-main-signature-32bit-c-int.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
fn main() {
99
}
1010

11-
// CHECK: define{{( hidden)?}} i32 @main(i32{{( %0)?}}, ptr{{( %1)?}})
11+
// CHECK: define{{( hidden| noundef)*}} i32 @main(i32{{( %0)?}}, ptr{{( %1)?}})

tests/codegen/sparc-struct-abi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct Bool {
1818
b: bool,
1919
}
2020

21-
// CHECK: define i64 @structbool()
21+
// CHECK: define{{.*}} i64 @structbool()
2222
// CHECK-NEXT: start:
2323
// CHECK-NEXT: ret i64 72057594037927936
2424
#[no_mangle]

0 commit comments

Comments
 (0)