mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-4502 changed UnionDataTypes to Unions
This commit is contained in:
parent
be8c4dde6d
commit
664c7fe248
1 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ public class PrimitiveExtractor {
|
||||||
* @param offset is the starting offset of the union within the parent
|
* @param offset is the starting offset of the union within the parent
|
||||||
* @return true if a common refinement was found and appended
|
* @return true if a common refinement was found and appended
|
||||||
*/
|
*/
|
||||||
private boolean handleUnion(UnionDataType dt, int max, int offset) {
|
private boolean handleUnion(Union dt, int max, int offset) {
|
||||||
if (unionInvalid) {
|
if (unionInvalid) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -232,7 +232,7 @@ public class PrimitiveExtractor {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
case PcodeDataTypeManager.TYPE_UNION:
|
case PcodeDataTypeManager.TYPE_UNION:
|
||||||
return handleUnion((UnionDataType) dt, max, offset);
|
return handleUnion((Union) dt, max, offset);
|
||||||
case PcodeDataTypeManager.TYPE_STRUCT:
|
case PcodeDataTypeManager.TYPE_STRUCT:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue