mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-2288 Check for dead PcodeOps in gatherOpsAtAddress
This commit is contained in:
parent
61b135acd9
commit
c1d5d764f9
1 changed files with 1 additions and 0 deletions
|
@ -668,6 +668,7 @@ void DynamicHash::gatherOpsAtAddress(vector<PcodeOp *> &opList,const Funcdata *f
|
||||||
enditer = fd->endOp(addr);
|
enditer = fd->endOp(addr);
|
||||||
for(iter = fd->beginOp(addr); iter != enditer; ++iter) {
|
for(iter = fd->beginOp(addr); iter != enditer; ++iter) {
|
||||||
PcodeOp *op = (*iter).second;
|
PcodeOp *op = (*iter).second;
|
||||||
|
if (op->isDead()) continue;
|
||||||
opList.push_back(op);
|
opList.push_back(op);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue