mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
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:
@ -325,17 +325,6 @@ union UGQR
|
|||||||
UGQR() { Hex = 0; }
|
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_CA_SHIFT 29
|
||||||
#define XER_OV_SHIFT 30
|
#define XER_OV_SHIFT 30
|
||||||
#define XER_SO_SHIFT 31
|
#define XER_SO_SHIFT 31
|
||||||
|
Reference in New Issue
Block a user