mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-02 15:48:34 +08:00
AArch32: fixed vmvn
* fixed incorrect shift offset (bytes given in place of bits) and double word order
This commit is contained in:
committed by
ghidorahrex
parent
217aded90d
commit
0982753437
@@ -4816,7 +4816,7 @@ vmlDmA: Dm_4^"["^thv_M5^"]" is TMode=1 & thv_c2021=2 & Dm_4 & thv_M5 {
|
|||||||
tmp2:8 = Qm(8);
|
tmp2:8 = Qm(8);
|
||||||
tmp1 = ~ tmp1;
|
tmp1 = ~ tmp1;
|
||||||
tmp2 = ~ tmp2;
|
tmp2 = ~ tmp2;
|
||||||
Qd = (zext(tmp1) << 8) | zext(tmp2);
|
Qd = (zext(tmp2) << 64) | zext(tmp1);
|
||||||
}
|
}
|
||||||
|
|
||||||
define pcodeop FloatVectorNeg;
|
define pcodeop FloatVectorNeg;
|
||||||
|
|||||||
Reference in New Issue
Block a user