GP-0 Added missing x86 old language v2-v3 translators and corrected old

language file parse bug
This commit is contained in:
ghidra1 2023-10-30 10:54:16 -04:00
parent 82db482d96
commit 6f37dc4007
8 changed files with 60 additions and 1 deletions

View file

@ -251,7 +251,9 @@ class OldLanguage implements Language {
langDescription = parseDescription(element, version);
}
else if ("compiler".equals(elementName)) {
associatedCompilerSpecs.add(parseCompilerSpecDescription(element));
if (!descriptionOnly) {
associatedCompilerSpecs.add(parseCompilerSpecDescription(element));
}
}
else if ("spaces".equals(elementName)) {
if (spacesFound) {