about summary refs log tree commit diff stats
path: root/example/expression/expr_grapher.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2017-03-30 16:24:26 +0200
committerGitHub <noreply@github.com>2017-03-30 16:24:26 +0200
commit7947f33a61118c35a6b24aaac29337e2739216b4 (patch)
tree6c281f7fc4efd326fb95151173b7847026a94f05 /example/expression/expr_grapher.py
parentcedf19e7d73ca8d603f2e1ed7f5306db27678e65 (diff)
parente8916cf8cc44a0cc375af762b38798cb378b986c (diff)
downloadmiasm-7947f33a61118c35a6b24aaac29337e2739216b4.tar.gz
miasm-7947f33a61118c35a6b24aaac29337e2739216b4.zip
Merge pull request #509 from commial/fix/int-singleton
Fix/int singleton
Diffstat (limited to 'example/expression/expr_grapher.py')
-rw-r--r--example/expression/expr_grapher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/expr_grapher.py b/example/expression/expr_grapher.py
index 3137e6d2..0de2142b 100644
--- a/example/expression/expr_grapher.py
+++ b/example/expression/expr_grapher.py
@@ -9,7 +9,7 @@ d = ExprId("D")
 m = ExprMem(a + b + c + a)
 
 e1 = ExprCompose(a + b - (c * a) / m | b, a + m)
-e2 = ExprInt64(15)
+e2 = ExprInt(15, 64)
 e = ExprCond(d, e1, e2)[0:32]
 
 print "[+] Expression:"