a64_jitstate: A64 does not have a seperate FPSCR.NZCV
This commit is contained in:
parent
99d8ebe4d5
commit
75b8a76630
1 changed files with 4 additions and 2 deletions
|
@ -30,8 +30,10 @@ struct A64JitState {
|
||||||
u64 sp;
|
u64 sp;
|
||||||
u64 pc;
|
u64 pc;
|
||||||
|
|
||||||
|
union {
|
||||||
u32 CPSR_nzcv = 0;
|
u32 CPSR_nzcv = 0;
|
||||||
u32 FPSCR_nzcv = 0;
|
u32 FPSCR_nzcv;
|
||||||
|
};
|
||||||
u32 GetPstate() const {
|
u32 GetPstate() const {
|
||||||
return CPSR_nzcv;
|
return CPSR_nzcv;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue