about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-02-26 15:30:47 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-02-26 15:53:53 +0100
commit04ae248954d5638aa836cf609e2bb4c50246cbdc (patch)
treec5bd73c268b75be13d28c21195c4485132b2bd73
parent5b4c08d6e69369faecb9ad2afd8101d7f5cc457b (diff)
downloadmiasm-04ae248954d5638aa836cf609e2bb4c50246cbdc.tar.gz
miasm-04ae248954d5638aa836cf609e2bb4c50246cbdc.zip
x86/sem: fix bad return
-rw-r--r--miasm2/arch/x86/sem.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index f2cedb34..cd456f7b 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -2537,7 +2537,7 @@ def fldcw(ir, instr, a):
 
 
 def fwait(ir, instr):
-    return [], None
+    return [], []
 
 
 def fcmovb(ir, instr, arg1, arg2):
@@ -2988,7 +2988,7 @@ def btr(ir, instr, a, b):
 
 
 def into(ir, instr):
-    return [], None
+    return [], []
 
 
 def l_in(ir, instr, a, b):
@@ -3105,12 +3105,12 @@ def lsl(ir, instr, a, b):
 
 def fclex(ir, instr):
     # XXX TODO
-    return [], None
+    return [], []
 
 
 def fnclex(ir, instr):
     # XXX TODO
-    return [], None
+    return [], []
 
 
 def l_str(ir, instr, a):