Skip to content

Commit 6536f31

Browse files
committed
Auto merge of #1290 - RalfJung:rustup, r=RalfJung
Rustup Also remove ICEing `breakpoint` intrinsic shim.
2 parents ee967c1 + 1e3800f commit 6536f31

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9a12971da5c08f9a95d54bdaef5cd83698ed4509
1+
235938d1acdd93d6641a741c81f64e415b786751

src/helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
128128
fn local_place(&mut self, local: mir::Local) -> InterpResult<'tcx, PlaceTy<'tcx, Tag>> {
129129
let this = self.eval_context_mut();
130130
let place = mir::Place { local: local, projection: List::empty() };
131-
this.eval_place(&place)
131+
this.eval_place(place)
132132
}
133133

134134
/// Generate some random bytes, and write them to `dest`.

src/shims/intrinsics.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
217217
this.write_immediate(*val, place.into())?;
218218
}
219219

220-
"breakpoint" => unimplemented!(), // halt miri
221-
222220
#[rustfmt::skip]
223221
| "copy"
224222
| "copy_nonoverlapping"

0 commit comments

Comments
 (0)