DBG: LinearPass: BASIC_BLOCK_FLAG_ABSJMP
This commit is contained in:
parent
f5c0d2fd01
commit
5f7c34f8aa
|
@ -207,6 +207,10 @@ void LinearPass::AnalysisWorker(uint Start, uint End, BBlockArray* Blocks)
|
|||
{
|
||||
// Branch target immediate
|
||||
block->Target = operand.imm;
|
||||
|
||||
// Check if abs jump
|
||||
if(disasm.GetId() == X86_INS_JMP)
|
||||
block->SetFlag(BASIC_BLOCK_FLAG_ABSJMP);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue