mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 10:10:13 +08:00
Merge remote-tracking branch 'origin/GP-2157_addendum'
This commit is contained in:
@@ -1277,7 +1277,7 @@ void Architecture::parseCompilerConfig(DocumentStorage &store)
|
|||||||
|
|
||||||
uint4 elemId = decoder.openElement(ELEM_COMPILER_SPEC);
|
uint4 elemId = decoder.openElement(ELEM_COMPILER_SPEC);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
uint subId = decoder.peekElement();
|
uint4 subId = decoder.peekElement();
|
||||||
if (subId == 0) break;
|
if (subId == 0) break;
|
||||||
if (subId == ELEM_DEFAULT_PROTO)
|
if (subId == ELEM_DEFAULT_PROTO)
|
||||||
decodeDefaultProto(decoder);
|
decodeDefaultProto(decoder);
|
||||||
|
|||||||
@@ -3185,7 +3185,7 @@ void ProtoStoreInternal::decode(Decoder &decoder,ProtoModel *model)
|
|||||||
|
|
||||||
uint4 elemId = decoder.openElement(ELEM_INTERNALLIST);
|
uint4 elemId = decoder.openElement(ELEM_INTERNALLIST);
|
||||||
for(;;) { // This is only the input params
|
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;
|
if (subId == 0) break;
|
||||||
string name;
|
string name;
|
||||||
uint4 flags = 0;
|
uint4 flags = 0;
|
||||||
|
|||||||
@@ -3753,7 +3753,7 @@ void TypeFactory::decodeCoreTypes(Decoder &decoder)
|
|||||||
void TypeFactory::decodeDataOrganization(Decoder &decoder)
|
void TypeFactory::decodeDataOrganization(Decoder &decoder)
|
||||||
|
|
||||||
{
|
{
|
||||||
uint elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
uint4 elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
uint4 subId = decoder.openElement();
|
uint4 subId = decoder.openElement();
|
||||||
if (subId == 0) break;
|
if (subId == 0) break;
|
||||||
|
|||||||
Reference in New Issue
Block a user