GT-3149 Corrected bitfield packing for ARM/AARCH64 for Windows PE.

Imposed default Thumb context setting for PE and MSCoff ARM32 imports
with addition of v8T ARM variant.  Corrected ARM pattern alignment
issues.  Corrected DBViewer long value rendering.
This commit is contained in:
ghidra1 2019-09-13 14:06:56 -04:00
parent d9da0f0b66
commit 349ef0fad2
11 changed files with 121 additions and 28 deletions

View file

@ -369,7 +369,10 @@ public class SleighLanguageProvider implements LanguageProvider {
catch (SleighException ex) { // Error with the manual shouldn't prevent language from loading
Msg.error(this, ex.getMessage());
}
descriptions.put(id, description);
if (descriptions.put(id, description) != null) {
Msg.showError(this, null, "Duplicate Sleigh Language ID",
"Language " + id + " previously defined: " + defsFile);
}
}
parser.end(start);
}