mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Support for per function unaffected/killedbycall/likelytrash
This commit is contained in:
parent
156ce7ef80
commit
75b7d5fe14
8 changed files with 703 additions and 245 deletions
|
@ -98,7 +98,7 @@ void StringManager::saveXml(ostream &s) const
|
|||
s << " <bytes";
|
||||
a_v_b(s, "trunc", stringData.isTruncated);
|
||||
s << ">\n" << setfill('0');
|
||||
for(int4 i=0;stringData.byteData.size();++i) {
|
||||
for(int4 i=0;i<stringData.byteData.size();++i) {
|
||||
s << hex << setw(2) << (int4)stringData.byteData[i];
|
||||
if (i%20 == 19)
|
||||
s << "\n ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue