diff options
| author | Erik Desjardins <erikdesjardins@users.noreply.github.com> | 2022-02-12 00:13:10 -0500 |
|---|---|---|
| committer | Erik Desjardins <erikdesjardins@users.noreply.github.com> | 2022-02-12 00:13:10 -0500 |
| commit | ae877003ec0d1941992a86996630df947582990e (patch) | |
| tree | 130c840ab5662030f2b0b5ad70a455955d095266 | |
| parent | 75ed7def5d31845f5672461c706609bd76f93d08 (diff) | |
| download | rust-ae877003ec0d1941992a86996630df947582990e.tar.gz rust-ae877003ec0d1941992a86996630df947582990e.zip | |
fix non-x64 tests
| -rw-r--r-- | src/test/codegen/fastcall-inreg.rs | 2 | ||||
| -rw-r--r-- | src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/codegen/fastcall-inreg.rs b/src/test/codegen/fastcall-inreg.rs index adbeae45449..d8e5856822e 100644 --- a/src/test/codegen/fastcall-inreg.rs +++ b/src/test/codegen/fastcall-inreg.rs @@ -70,7 +70,7 @@ pub mod tests { #[no_mangle] pub extern "fastcall" fn f5(_: i64, _: i32) {} - // CHECK: @f6(i1 inreg zeroext %_1, i32 inreg %_2, i32 %_3) + // CHECK: @f6(i1 inreg noundef zeroext %_1, i32 inreg %_2, i32 %_3) #[no_mangle] pub extern "fastcall" fn f6(_: bool, _: i32, _: i32) {} } diff --git a/src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs b/src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs index 693f0d99c4f..8593a035787 100644 --- a/src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs +++ b/src/test/codegen/riscv-abi/riscv64-lp64-lp64f-lp64d-abi.rs @@ -9,7 +9,7 @@ #[no_mangle] pub extern "C" fn f_void() {} -// CHECK: define zeroext i1 @f_scalar_0(i1 zeroext %a) +// CHECK: define noundef zeroext i1 @f_scalar_0(i1 noundef zeroext %a) #[no_mangle] pub extern "C" fn f_scalar_0(a: bool) -> bool { a |
