AArch32: fixed vselgt

* added 'and N == V' check missed in the vselcond "gt"
This commit is contained in:
Sleigh-InSPECtor 2024-05-16 15:06:26 +09:30 committed by ghidorahrex
parent ff2dab8b15
commit 26acd697ac

View file

@ -1327,7 +1327,7 @@ vselcond: "ge"
vselcond: "gt"
is ((TMode=0 & c2021=0b11)
| (TMode=1 & thv_c2021=0b11))
{ tmp:1 = (!ZR); export tmp; }
{ tmp:1 = (!ZR && NG==OV); export tmp; }
vselcond: "vs"
is ((TMode=0 & c2021=0b01)
| (TMode=1 & thv_c2021=0b01))