summaryrefslogtreecommitdiff
path: root/plugins/arm
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-09-08 08:26:04 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-09-08 08:26:04 (GMT)
commit8002f34e4060e25cb3acee76a0c2ae2970f9e9dc (patch)
tree9fea6ccf389636f3472cacb3dcb201972b7e32ea /plugins/arm
parent63b19fd26429913a90ae1dcbb78a15928ed2af19 (diff)
Fixed the mask used for some ARMv7 SIMD instructions decoding.
Diffstat (limited to 'plugins/arm')
-rw-r--r--plugins/arm/v7/arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/arm/v7/arm.c b/plugins/arm/v7/arm.c
index fc56f2d..8e64c26 100644
--- a/plugins/arm/v7/arm.c
+++ b/plugins/arm/v7/arm.c
@@ -3190,7 +3190,7 @@ static GArchInstruction *process_armv7_arm_floating_point_data_processing_instru
* ยง A7.5 Floating-point data-processing instructions
*/
- if ((raw & 0x0f000e10) != 0xee000a00) return NULL;
+ if ((raw & 0x0f000e10) != 0x0e000a00) return NULL;
result = NULL;