about summary refs log tree commit diff stats
path: root/test/arch/arm/arch.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-01-23 22:19:44 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-24 16:14:19 +0100
commit8001e8f6f7d5d085ef9f8a3d7ac998094f44d488 (patch)
tree1a0aff0e920385a86f015018dae4467cacf0eed8 /test/arch/arm/arch.py
parent3af62274b68f13fc6eba680ef1524e5f215e5c8b (diff)
downloadmiasm-8001e8f6f7d5d085ef9f8a3d7ac998094f44d488.tar.gz
miasm-8001e8f6f7d5d085ef9f8a3d7ac998094f44d488.zip
arm: Add instruction umlal
umull, smull, smull and smlal are there, but not umlal
(unsigned multiply and accumulate long)
Diffstat (limited to '')
-rw-r--r--test/arch/arm/arch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py
index 5e3feb1d..19b1236e 100644
--- a/test/arch/arm/arch.py
+++ b/test/arch/arm/arch.py
@@ -191,6 +191,8 @@ reg_tests_arm = [
 
     ("0002F5B0    UMULL      R2, R3, R3, R2",
      "932283E0"),
+    ("0002F5B4    UMLAL      R3, R4, R5, LR",
+     "953EA4E0"),
     ("C045D260    SMULL      R3, R2, LR, R2",
      "9E32C2E0"),
     ("C03E6440    SMLAL      R2, R0, R1, R0",