From 2af11f743331f995fde87dd2bcc77e7c77229d0a Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 17 Oct 2018 16:06:11 +0200 Subject: [PATCH] the tidy strikes again --- src/librustc_mir/interpret/eval_context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_mir/interpret/eval_context.rs b/src/librustc_mir/interpret/eval_context.rs index 5fcd5307b8e2..92cc09f4867b 100644 --- a/src/librustc_mir/interpret/eval_context.rs +++ b/src/librustc_mir/interpret/eval_context.rs @@ -505,7 +505,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc self.frame_mut().locals = locals; } - if self.stack.len() > 1 { // FIXME no check should be needed, but printing topmost frame crashes rustc... + if self.stack.len() > 1 { // FIXME no check should be needed, but some instances ICE debug!("ENTERING({}) {}", self.cur_frame(), self.frame().instance); } @@ -517,7 +517,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc } pub(super) fn pop_stack_frame(&mut self) -> EvalResult<'tcx> { - if self.stack.len() > 1 { // FIXME no check should be needed, but printing topmost frame crashes rustc... + if self.stack.len() > 1 { // FIXME no check should be needed, but some instances ICE debug!("LEAVING({}) {}", self.cur_frame(), self.frame().instance); } ::log_settings::settings().indentation -= 1;