a64_jitstate: A64 does not have a seperate FPSCR.NZCV

This commit is contained in:
MerryMage 2018-02-02 22:25:18 +00:00
parent 4728257d4e
commit 0131a87c43

View File

@ -30,8 +30,10 @@ struct A64JitState {
u64 sp;
u64 pc;
u32 CPSR_nzcv = 0;
u32 FPSCR_nzcv = 0;
union {
u32 CPSR_nzcv = 0;
u32 FPSCR_nzcv;
};
u32 GetPstate() const {
return CPSR_nzcv;
}