mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
upto f8cca3e -- preparing for MULTIEQUAL/INDIRECT traversals
This commit is contained in:
parent
25894ff9ae
commit
5d2a7a3134
3 changed files with 296 additions and 29 deletions
|
@ -3347,7 +3347,8 @@ int4 RulePropagateCopy::applyOp(PcodeOp *op,Funcdata &data)
|
|||
if (invn == vn)
|
||||
throw LowlevelError("Self-defined varnode");
|
||||
if (op->isMarker()) {
|
||||
if (invn->isConstant()) continue; // Don't propagate constants into markers
|
||||
if (invn->isConstant()) continue; // Don't propagate constants into markers
|
||||
if (vn->isAddrForce()) continue; // Don't propagate if we are keeping the COPY anyway
|
||||
if (invn->isAddrTied() && op->getOut()->isAddrTied() &&
|
||||
(op->getOut()->getAddr() != invn->getAddr()))
|
||||
continue; // We must not allow merging of different addrtieds
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue