a64_merge_interpret_blocks: Remove debug output
This commit is contained in:
parent
e99db8e745
commit
4e3675da7b
1 changed files with 0 additions and 3 deletions
|
@ -31,7 +31,6 @@ void A64MergeInterpretBlocksPass(IR::Block& block, A64::UserCallbacks* cb) {
|
|||
|
||||
const IR::Terminal terminal = new_block.GetTerminal();
|
||||
if (auto term = boost::get<IR::Term::Interpret>(&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;
|
||||
|
|
Loading…
Reference in a new issue