mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
Merge remote-tracking branch 'origin/GP-2157_addendum'
This commit is contained in:
commit
6c7519d5ea
@ -1277,7 +1277,7 @@ void Architecture::parseCompilerConfig(DocumentStorage &store)
|
||||
|
||||
uint4 elemId = decoder.openElement(ELEM_COMPILER_SPEC);
|
||||
for(;;) {
|
||||
uint subId = decoder.peekElement();
|
||||
uint4 subId = decoder.peekElement();
|
||||
if (subId == 0) break;
|
||||
if (subId == ELEM_DEFAULT_PROTO)
|
||||
decodeDefaultProto(decoder);
|
||||
|
@ -3185,7 +3185,7 @@ void ProtoStoreInternal::decode(Decoder &decoder,ProtoModel *model)
|
||||
|
||||
uint4 elemId = decoder.openElement(ELEM_INTERNALLIST);
|
||||
for(;;) { // This is only the input params
|
||||
uint subId = decoder.openElement(); // <retparam> or <param>
|
||||
uint4 subId = decoder.openElement(); // <retparam> or <param>
|
||||
if (subId == 0) break;
|
||||
string name;
|
||||
uint4 flags = 0;
|
||||
|
@ -3753,7 +3753,7 @@ void TypeFactory::decodeCoreTypes(Decoder &decoder)
|
||||
void TypeFactory::decodeDataOrganization(Decoder &decoder)
|
||||
|
||||
{
|
||||
uint elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
||||
uint4 elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
||||
for(;;) {
|
||||
uint4 subId = decoder.openElement();
|
||||
if (subId == 0) break;
|
||||
|
Loading…
Reference in New Issue
Block a user