Skip to content

Commit 7e8b17c

Browse files
committed
Auto merge of #1018 - RalfJung:rustup, r=RalfJung
rustup; fix debugging
2 parents 09e7429 + 354de02 commit 7e8b17c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
57bfb8096295150c06559da10adc5629e445a4ac
1+
f466f52c1bf8f2e4454e31c683a88625ad4b4033

src/eval.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,8 @@ pub fn eval_main<'tcx>(tcx: TyCtxt<'tcx>, main_id: DefId, config: MiriConfig) {
257257
trace!("-------------------");
258258
trace!("Frame {}", i);
259259
trace!(" return: {:?}", frame.return_place.map(|p| *p));
260-
for (_i, _local) in frame.locals.iter().enumerate() {
261-
//trace!(" local {}: {:?}", i, local.value);
262-
//FIXME: enable this again when the LocalValue Debug impl is back
260+
for (i, local) in frame.locals.iter().enumerate() {
261+
trace!(" local {}: {:?}", i, local.value);
263262
}
264263
}
265264
}

0 commit comments

Comments
 (0)