diff --git a/src/ir_opt/a64_merge_interpret_blocks.cpp b/src/ir_opt/a64_merge_interpret_blocks.cpp index f0be76c3..7fd060e4 100644 --- a/src/ir_opt/a64_merge_interpret_blocks.cpp +++ b/src/ir_opt/a64_merge_interpret_blocks.cpp @@ -31,7 +31,6 @@ void A64MergeInterpretBlocksPass(IR::Block& block, A64::UserCallbacks* cb) { const IR::Terminal terminal = new_block.GetTerminal(); if (auto term = boost::get(&terminal)) { - printf("INTERPET %08x \\x%02x\\x%02x\\x%02x\\x%02x \n", instruction, u8(instruction >> 0), u8(instruction >> 8), u8(instruction >> 16), u8(instruction >> 24)); return term->next == location; } @@ -50,8 +49,6 @@ void A64MergeInterpretBlocksPass(IR::Block& block, A64::UserCallbacks* cb) { num_instructions++; } - printf("%zu\n", num_instructions); - term->num_instructions = num_instructions; block.ReplaceTerminal(terminal); block.CycleCount() += num_instructions - 1;