mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-2578 Display volatile reads/writes as simple assignments
This commit is contained in:
parent
7e24c986ad
commit
072d8fa08f
22 changed files with 221 additions and 65 deletions
|
@ -910,6 +910,8 @@ void Varnode::encode(Encoder &encoder) const
|
|||
encoder.writeBool(ATTRIB_UNAFF, true);
|
||||
if (isInput())
|
||||
encoder.writeBool(ATTRIB_INPUT, true);
|
||||
if (isVolatile())
|
||||
encoder.writeBool(ATTRIB_VOLATILE, true);
|
||||
encoder.closeElement(ELEM_ADDR);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue