diff options
| author | bors <bors@rust-lang.org> | 2023-11-28 22:28:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-28 22:28:34 +0000 |
| commit | bbefc9837f4157cc09ed60e6d7b21e345d582dd9 (patch) | |
| tree | a8caf9abdac7ca1ae725cd41bfbaea3af15367d5 /tests/codegen | |
| parent | 5facb422f8a5a61df515572fe79b02433639d565 (diff) | |
| parent | 4ca038f048b77c3f0d615630fae586a5781e8f8e (diff) | |
| download | rust-bbefc9837f4157cc09ed60e6d7b21e345d582dd9.tar.gz rust-bbefc9837f4157cc09ed60e6d7b21e345d582dd9.zip | |
Auto merge of #118412 - matthiaskrgr:rollup-ghzhti2, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #118193 (Add missing period in `std::process::Command` docs) - #118222 (unify read_to_end and io::copy impls for reading into a Vec) - #118323 (give dev-friendly error message for incorrect config profiles) - #118378 (Perform LTO optimisations with wasm-ld + -Clinker-plugin-lto) - #118399 (Clean dead codes in miri) - #118410 (update test for new LLVM 18 codegen) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/ascii-char.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/ascii-char.rs b/tests/codegen/ascii-char.rs index 4167becf5e9..711ffe7e1a5 100644 --- a/tests/codegen/ascii-char.rs +++ b/tests/codegen/ascii-char.rs @@ -14,7 +14,7 @@ pub fn unwrap_digit_from_remainder(v: u32) -> AsciiChar { // CHECK: %[[R:.+]] = urem i32 %v, 10 // CHECK-NEXT: %[[T:.+]] = trunc i32 %[[R]] to i8 - // CHECK-NEXT: %[[D:.+]] = or i8 %[[T]], 48 + // CHECK-NEXT: %[[D:.+]] = or{{( disjoint)?}} i8 %[[T]], 48 // CHECK-NEXT: ret i8 %[[D]] // CHECK-NOT: icmp |
