From 8002f34e4060e25cb3acee76a0c2ae2970f9e9dc Mon Sep 17 00:00:00 2001
From: Cyrille Bagard <nocbos@gmail.com>
Date: Sun, 8 Sep 2019 10:26:04 +0200
Subject: Fixed the mask used for some ARMv7 SIMD instructions decoding.

---
 plugins/arm/v7/arm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 
-- 
cgit v0.11.2-87-g4458