Skip to content

Commit ae87700

Browse files
fix non-x64 tests
1 parent 75ed7de commit ae87700

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/codegen/fastcall-inreg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub mod tests {
7070
#[no_mangle]
7171
pub extern "fastcall" fn f5(_: i64, _: i32) {}
7272

73-
// CHECK: @f6(i1 inreg zeroext %_1, i32 inreg %_2, i32 %_3)
73+
// CHECK: @f6(i1 inreg noundef zeroext %_1, i32 inreg %_2, i32 %_3)
7474
#[no_mangle]
7575
pub extern "fastcall" fn f6(_: bool, _: i32, _: i32) {}
7676
}

src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#[no_mangle]
1010
pub extern "C" fn f_void() {}
1111

12-
// CHECK: define zeroext i1 @f_scalar_0(i1 zeroext %a)
12+
// CHECK: define noundef zeroext i1 @f_scalar_0(i1 noundef zeroext %a)
1313
#[no_mangle]
1414
pub extern "C" fn f_scalar_0(a: bool) -> bool {
1515
a

0 commit comments

Comments
 (0)