GP-2288 Check for dead PcodeOps in gatherOpsAtAddress

This commit is contained in:
caheckman 2022-07-05 19:23:07 -04:00
parent 61b135acd9
commit c1d5d764f9

View file

@ -668,6 +668,7 @@ void DynamicHash::gatherOpsAtAddress(vector<PcodeOp *> &opList,const Funcdata *f
enditer = fd->endOp(addr);
for(iter = fd->beginOp(addr); iter != enditer; ++iter) {
PcodeOp *op = (*iter).second;
if (op->isDead()) continue;
opList.push_back(op);
}
}