diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/link.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/arch/link.c b/src/arch/link.c index 3b74e5c..48bc3a3 100644 --- a/src/arch/link.c +++ b/src/arch/link.c @@ -121,9 +121,6 @@ void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcC target = g_arch_processor_find_instr_by_address(proc, &addr); - printf(" @ 0x%08x BRANCH true to 0x%08x -->> %p\n", - (unsigned int)instr->range.addr.virtual, (unsigned int)virt, target); - if (target != NULL) { g_arch_instruction_link_with(instr, target, ILT_JUMP_IF_TRUE); @@ -132,14 +129,6 @@ void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcC target = g_arch_instruction_get_next_iter(list, instr, ~0); - - if (target != NULL) - printf(" @ 0x%08x BRANCH false to 0x%08x -->> %p\n", - (unsigned int)instr->range.addr.virtual, - (unsigned int)g_arch_instruction_get_range(target)->addr.virtual, - target); - - if (target != NULL) g_arch_instruction_link_with(instr, target, ILT_JUMP_IF_FALSE); @@ -147,13 +136,6 @@ void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcC } - - else printf(" @ 0x%08x FAILED TO BRANCH\n", - (unsigned int)instr->range.addr.virtual); - - - - } |