Skip to content

Commit c65fbc4

Browse files
committed
Auto merge of #783 - RalfJung:rustup, r=RalfJung
fix compilation with latest rustc
2 parents 19b27ab + 72c269e commit c65fbc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
56a12b2ad058f22f1ef090713df15598525ba4a4
1+
305930cffeac1da0fd73a08d9f5680e4a49bfb9f

src/intrinsic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
505505
let ptr = mplace.ptr.to_ptr()?;
506506
this.memory_mut()
507507
.get_mut(ptr.alloc_id)?
508-
.mark_definedness(ptr, dest.layout.size, false)?;
508+
.mark_definedness(ptr, dest.layout.size, false);
509509
}
510510
}
511511
}

0 commit comments

Comments
 (0)