mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 17:53:56 +00:00
Auto merge of #1290 - RalfJung:rustup, r=RalfJung
Rustup Also remove ICEing `breakpoint` intrinsic shim.
This commit is contained in:
commit
6536f3165e
@ -1 +1 @@
|
||||
9a12971da5c08f9a95d54bdaef5cd83698ed4509
|
||||
235938d1acdd93d6641a741c81f64e415b786751
|
||||
|
@ -128,7 +128,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
|
||||
fn local_place(&mut self, local: mir::Local) -> InterpResult<'tcx, PlaceTy<'tcx, Tag>> {
|
||||
let this = self.eval_context_mut();
|
||||
let place = mir::Place { local: local, projection: List::empty() };
|
||||
this.eval_place(&place)
|
||||
this.eval_place(place)
|
||||
}
|
||||
|
||||
/// Generate some random bytes, and write them to `dest`.
|
||||
|
@ -217,8 +217,6 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
|
||||
this.write_immediate(*val, place.into())?;
|
||||
}
|
||||
|
||||
"breakpoint" => unimplemented!(), // halt miri
|
||||
|
||||
#[rustfmt::skip]
|
||||
| "copy"
|
||||
| "copy_nonoverlapping"
|
||||
|
Loading…
Reference in New Issue
Block a user