about summary refs log tree commit diff stats
path: root/miasm2/arch/arm/sem.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-12-23 13:45:25 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-12-23 15:11:48 +0100
commit494ba6e2b3711b519d7f99f2867e293b0f1650eb (patch)
tree7eb36c35e792baa5806a68daeb16d4856ff9323b /miasm2/arch/arm/sem.py
parent103c1ea91b7cbeef86041974ac493f341513efd8 (diff)
downloadmiasm-494ba6e2b3711b519d7f99f2867e293b0f1650eb.tar.gz
miasm-494ba6e2b3711b519d7f99f2867e293b0f1650eb.zip
Expr: Remove exprint_from
Diffstat (limited to 'miasm2/arch/arm/sem.py')
-rw-r--r--miasm2/arch/arm/sem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py
index e251ca75..225b393c 100644
--- a/miasm2/arch/arm/sem.py
+++ b/miasm2/arch/arm/sem.py
@@ -398,7 +398,7 @@ def neg(ir, instr, a, b):
     return e
 
 def negs(ir, instr, a, b):
-    e = subs(ir, instr, a, ExprInt_from(b, 0), b)
+    e = subs(ir, instr, a, ExprInt(0, b.size), b)
     return e
 
 def bic(ir, instr, a, b, c=None):