mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Use context when determining if extension casts are hidden
This commit is contained in:
parent
163fa4af57
commit
36aebc2d9b
6 changed files with 117 additions and 115 deletions
|
@ -648,8 +648,10 @@ void PrintLanguage::recurse(void)
|
|||
mods = nodepend.back().vnmod;
|
||||
nodepend.pop_back();
|
||||
pending -= 1;
|
||||
if (vn->isImplied())
|
||||
vn->getDef()->push(this);
|
||||
if (vn->isImplied()) {
|
||||
const PcodeOp *defOp = vn->getDef();
|
||||
defOp->getOpcode()->push(this,defOp,op);
|
||||
}
|
||||
else
|
||||
pushVnExplicit(vn,op);
|
||||
pending = nodepend.size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue