Skip to content

Commit ee86b1f

Browse files
committed
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.
1 parent ae612be commit ee86b1f

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)