Gekko: Remove unused UFPR union
Using this in its current form would invoke undefined behavior, as it's using a union to type pun between data types. It's also, well, unused, so we don't need to keep it around.
This commit is contained in:
parent
75574b7b97
commit
5d1349f9c7
|
@ -325,17 +325,6 @@ union UGQR
|
|||
UGQR() { Hex = 0; }
|
||||
};
|
||||
|
||||
// FPU Register
|
||||
union UFPR
|
||||
{
|
||||
u64 as_u64;
|
||||
s64 as_s64;
|
||||
double d;
|
||||
u32 as_u32[2];
|
||||
s32 as_s32[2];
|
||||
float f[2];
|
||||
};
|
||||
|
||||
#define XER_CA_SHIFT 29
|
||||
#define XER_OV_SHIFT 30
|
||||
#define XER_SO_SHIFT 31
|
||||
|
|
Loading…
Reference in New Issue