mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
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:
parent
d9da0f0b66
commit
349ef0fad2
11 changed files with 121 additions and 28 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue