From e2a020bf0bbf1b8debd841bb01e1bbe7f8a1c027 Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Wed, 13 Dec 2023 10:54:24 -0600 Subject: [PATCH] Remove debug code from InstructionDecoder_amdgpu_gfx908::decode --- .../src/AMDGPU/gfx908/InstructionDecoder-amdgpu-gfx908.C | 4 ---- 1 file changed, 4 deletions(-) diff --git a/instructionAPI/src/AMDGPU/gfx908/InstructionDecoder-amdgpu-gfx908.C b/instructionAPI/src/AMDGPU/gfx908/InstructionDecoder-amdgpu-gfx908.C index c28bd2bb08..8154234990 100644 --- a/instructionAPI/src/AMDGPU/gfx908/InstructionDecoder-amdgpu-gfx908.C +++ b/instructionAPI/src/AMDGPU/gfx908/InstructionDecoder-amdgpu-gfx908.C @@ -228,10 +228,6 @@ namespace Dyninst { Instruction InstructionDecoder_amdgpu_gfx908::decode(InstructionDecoder::buffer &b) { setupInsnWord(b); mainDecode(); - if(entryToCategory(insn_in_progress->getOperation().getID())==c_BranchInsn){ - //cout << "Is Branch Instruction !! , name = " << insn_in_progress -> getOperation().mnemonic << endl; - //std::mem_fun(decode_lookup_table[instr_family])(this); - } b.start += insn_in_progress->size(); return *insn_in_progress; }