From 76f6d0ec941985e233fceb720f46a626c06c0ba8 Mon Sep 17 00:00:00 2001 From: Sergey Pepyakin Date: Mon, 18 Jun 2018 20:19:14 +0300 Subject: [PATCH] Remove println! --- src/validation/func.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/validation/func.rs b/src/validation/func.rs index b3754a4..e8e76b0 100644 --- a/src/validation/func.rs +++ b/src/validation/func.rs @@ -208,7 +208,6 @@ impl FunctionReader { let outcome = FunctionReader::read_instruction(context, opcode) .map_err(|err| Error(format!("At instruction {:?}(@{}): {}", opcode, context.position, err)))?; - println!("opcode: {:?}, outcome={:?}", opcode, outcome); match outcome { Outcome::NextInstruction => (), Outcome::Unreachable => make_top_frame_polymorphic( @@ -309,12 +308,6 @@ impl FunctionReader { // will jump to this label. context.sink.resolve_label(if_not); - println!( - "value_stack: {:#?}, frame_stack: {:#?}", - context.value_stack, - context.frame_stack, - ); - // Then, we pop the current label. It discards all values that pushed in the current // frame. pop_label(