mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
Refactor variable renaming
This commit is contained in:
parent
b88ea8c927
commit
c0dfa509ee
18 changed files with 647 additions and 339 deletions
|
@ -382,7 +382,10 @@ void Varnode::setSymbolEntry(SymbolEntry *entry)
|
|||
|
||||
{
|
||||
mapentry = entry;
|
||||
setFlags(Varnode::mapped); // Flags are generally not changed, but we do mark this as mapped
|
||||
uint4 fl = Varnode::mapped; // Flags are generally not changed, but we do mark this as mapped
|
||||
if (entry->getSymbol()->isNameLocked())
|
||||
fl |= Varnode::namelock;
|
||||
setFlags(fl);
|
||||
if (high != (HighVariable *)0)
|
||||
high->setSymbol(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue