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:
Lioncash 2018-04-07 22:30:24 -04:00
parent 75574b7b97
commit 5d1349f9c7
1 changed files with 0 additions and 11 deletions

View File

@ -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