Skip to content

Commit 53aec46

Browse files
committed
Auto merge of rust-lang#2680 - RalfJung:rustup, r=RalfJung
Rustup
2 parents a6a38dc + 70fab06 commit 53aec46

File tree

4 files changed

+2
-31
lines changed

4 files changed

+2
-31
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2f8d8040166a730d0da7bba0f2864f0ef7ff6364
1+
7477c1f4f7d6bef037d523099b240d22aa1b63a0

src/shims/intrinsics/mod.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -368,11 +368,6 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
368368
}
369369

370370
// Other
371-
"exact_div" => {
372-
let [num, denom] = check_arg_count(args)?;
373-
this.exact_div(&this.read_immediate(num)?, &this.read_immediate(denom)?, dest)?;
374-
}
375-
376371
"breakpoint" => {
377372
let [] = check_arg_count(args)?;
378373
// normally this would raise a SIGTRAP, which aborts if no debugger is connected

tests/pass/issues/issue-miri-2433.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

tests/pass/panic/catch_panic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fn main() {
6969
});
7070

7171
test(Some("align_offset: align is not a power-of-two"), |_old_val| {
72-
(0usize as *const u8).align_offset(3);
72+
let _ = (0usize as *const u8).align_offset(3);
7373
loop {}
7474
});
7575

0 commit comments

Comments
 (0)