Remove println!

This commit is contained in:
Sergey Pepyakin 2018-06-18 20:19:14 +03:00
parent c384da2a06
commit 76f6d0ec94
1 changed files with 0 additions and 7 deletions

View File

@ -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(