mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Fix EmulatePcodeCache::executeBranch
This commit is contained in:
parent
7891d26115
commit
f928ab1fe1
1 changed files with 2 additions and 0 deletions
|
@ -413,6 +413,8 @@ void EmulatePcodeCache::executeBranch(void)
|
||||||
fallthruOp();
|
fallthruOp();
|
||||||
else if ((current_op < 0)||(current_op >= opcache.size()))
|
else if ((current_op < 0)||(current_op >= opcache.size()))
|
||||||
throw LowlevelError("Bad intra-instruction branch");
|
throw LowlevelError("Bad intra-instruction branch");
|
||||||
|
else
|
||||||
|
establishOp();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
setExecuteAddress(destaddr);
|
setExecuteAddress(destaddr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue