mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Merge remote-tracking branch 'origin/GT-3041_emteere_PR-567_mumbel_tricore'
This commit is contained in:
commit
64e83b1d93
21 changed files with 18286 additions and 4 deletions
|
@ -323,9 +323,15 @@ public class ParamEntry {
|
|||
size = SpecXmlUtils.decodeInt(entry.getValue());
|
||||
else if (name.equals("metatype")) { // Not implemented at the moment
|
||||
String meta = entry.getValue();
|
||||
// TODO: Currently only supporting "float" and "unknown" metatypes
|
||||
if ((meta != null)&&(meta.equals("float")))
|
||||
type = TYPE_FLOAT;
|
||||
// TODO: Currently only supporting "float", "ptr", and "unknown" metatypes
|
||||
if ((meta != null)) {
|
||||
if (meta.equals("float")) {
|
||||
type = TYPE_FLOAT;
|
||||
}
|
||||
else if (meta.equals("ptr")) {
|
||||
type = TYPE_PTR;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (name.equals("group")) // Override the group
|
||||
group = SpecXmlUtils.decodeInt(entry.getValue());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue