about summary refs log tree commit diff stats
path: root/miasm2/arch/arm/sem.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/arm/sem.py')
-rw-r--r--miasm2/arch/arm/sem.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py
index 6838ef66..5bd4db24 100644
--- a/miasm2/arch/arm/sem.py
+++ b/miasm2/arch/arm/sem.py
@@ -933,6 +933,9 @@ def rev(ir, instr, a, b):
     e.append(ExprAff(a, c))
     return e
 
+def pld(ir, instr, a):
+    return []
+
 
 
 COND_EQ = 0
@@ -1137,6 +1140,7 @@ mnemo_nocond = {'lsr': lsr,
                 'asrs': asrs,
                 'cbz': cbz,
                 'cbnz': cbnz,
+                'pld': pld,
                 }
 mn_cond_x = [mnemo_condm0,
              mnemo_condm1,