GP-1997 Don't over propagate global values

This commit is contained in:
caheckman 2022-05-04 19:08:46 -04:00
parent afb63d811c
commit 9d0829651a
7 changed files with 17 additions and 20 deletions

View file

@ -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;
}