mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
AArch32: fixed vselgt
* added 'and N == V' check missed in the vselcond "gt"
This commit is contained in:
parent
ff2dab8b15
commit
26acd697ac
1 changed files with 1 additions and 1 deletions
|
@ -1327,7 +1327,7 @@ vselcond: "ge"
|
||||||
vselcond: "gt"
|
vselcond: "gt"
|
||||||
is ((TMode=0 & c2021=0b11)
|
is ((TMode=0 & c2021=0b11)
|
||||||
| (TMode=1 & thv_c2021=0b11))
|
| (TMode=1 & thv_c2021=0b11))
|
||||||
{ tmp:1 = (!ZR); export tmp; }
|
{ tmp:1 = (!ZR && NG==OV); export tmp; }
|
||||||
vselcond: "vs"
|
vselcond: "vs"
|
||||||
is ((TMode=0 & c2021=0b01)
|
is ((TMode=0 & c2021=0b01)
|
||||||
| (TMode=1 & thv_c2021=0b01))
|
| (TMode=1 & thv_c2021=0b01))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue