mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Last chance attempt to find LOAD/STORE
This commit is contained in:
parent
46e8a54948
commit
72d6b15133
2 changed files with 11 additions and 2 deletions
|
@ -1087,9 +1087,10 @@ void Architecture::parseProcessorConfig(DocumentStorage &store)
|
|||
parseLaneSizes(*iter);
|
||||
}
|
||||
else if (elname == "data_space") {
|
||||
AddrSpace *spc = getSpaceByName(el->getAttributeValue("space"));
|
||||
const string &spaceName( (*iter)->getAttributeValue("space"));
|
||||
AddrSpace *spc = getSpaceByName(spaceName);
|
||||
if (spc == (AddrSpace *)0)
|
||||
throw LowlevelError("Undefined space: "+el->getAttributeValue("space"));
|
||||
throw LowlevelError("Undefined space: "+spaceName);
|
||||
setDefaultDataSpace(spc->getIndex());
|
||||
}
|
||||
else if (elname == "segmented_address") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue