mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-1997 Don't over propagate global values
This commit is contained in:
parent
afb63d811c
commit
9d0829651a
7 changed files with 17 additions and 20 deletions
|
@ -787,7 +787,7 @@ Datatype *Varnode::getLocalType(bool &blockup) const
|
|||
ct = (Datatype *)0;
|
||||
if (def != (PcodeOp *)0) {
|
||||
ct = def->outputTypeLocal();
|
||||
if (def->stopsPropagation()) {
|
||||
if (def->stopsTypePropagation()) {
|
||||
blockup = true;
|
||||
return ct;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue