summaryrefslogtreecommitdiff
path: root/src/arch/arm/v7/thumb_32.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-02-01 22:39:57 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-02-01 22:39:57 (GMT)
commit5511e355e7810f06bd610b79bcc94402c88d7ec9 (patch)
tree59023590f49f01cbd4ebfa9c1e82f797315e6f36 /src/arch/arm/v7/thumb_32.c
parent21a05df6423bdc13ca148ff2b96aec80bf7af2b2 (diff)
Added some development assertions and avoided to load code twice.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@464 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/arm/v7/thumb_32.c')
-rw-r--r--src/arch/arm/v7/thumb_32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/v7/thumb_32.c b/src/arch/arm/v7/thumb_32.c
index 757abc4..8fc4d91 100644
--- a/src/arch/arm/v7/thumb_32.c
+++ b/src/arch/arm/v7/thumb_32.c
@@ -679,7 +679,7 @@ static GArchInstruction *process_armv7_thumb_32_load_store_multiple(uint32_t raw
* ยง A6.3.5 Load/store multiple
*/
- if ((raw & 0xfe400000) != 0xe0000000) return NULL;
+ if ((raw & 0xfe400000) != 0xe8000000) return NULL;
result = NULL;