Skip to content

Commit 2af11f7

Browse files
committed
the tidy strikes again
1 parent bc647e9 commit 2af11f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_mir/interpret/eval_context.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc
505505
self.frame_mut().locals = locals;
506506
}
507507

508-
if self.stack.len() > 1 { // FIXME no check should be needed, but printing topmost frame crashes rustc...
508+
if self.stack.len() > 1 { // FIXME no check should be needed, but some instances ICE
509509
debug!("ENTERING({}) {}", self.cur_frame(), self.frame().instance);
510510
}
511511

@@ -517,7 +517,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc
517517
}
518518

519519
pub(super) fn pop_stack_frame(&mut self) -> EvalResult<'tcx> {
520-
if self.stack.len() > 1 { // FIXME no check should be needed, but printing topmost frame crashes rustc...
520+
if self.stack.len() > 1 { // FIXME no check should be needed, but some instances ICE
521521
debug!("LEAVING({}) {}", self.cur_frame(), self.frame().instance);
522522
}
523523
::log_settings::settings().indentation -= 1;

0 commit comments

Comments
 (0)