Rustup to rustc 1.36.0-nightly (3c3d3c177 2019-04-17)

This commit is contained in:
bjorn3 2019-04-18 19:06:59 +02:00
parent 96a3f5db69
commit dd21922f31

View File

@ -407,12 +407,12 @@ impl<'a, 'mir, 'tcx> Machine<'a, 'mir, 'tcx> for TransPlaceInterpreter {
Cow::Borrowed(alloc)
}
fn tag_new_allocation(
_: &mut InterpretCx<'a, 'mir, 'tcx, Self>,
ptr: Pointer,
fn new_allocation(
_: Size,
_: &(),
_: MemoryKind<!>,
) -> Pointer {
ptr
) -> ((), ()) {
((), ())
}
fn stack_push(_: &mut InterpretCx<'a, 'mir, 'tcx, Self>) -> EvalResult<'tcx> {