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
parent cae9190c13
commit 15ea7ba95b

View File

@ -1325,7 +1325,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))