diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-26 15:30:47 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-26 15:53:53 +0100 |
| commit | 04ae248954d5638aa836cf609e2bb4c50246cbdc (patch) | |
| tree | c5bd73c268b75be13d28c21195c4485132b2bd73 | |
| parent | 5b4c08d6e69369faecb9ad2afd8101d7f5cc457b (diff) | |
| download | miasm-04ae248954d5638aa836cf609e2bb4c50246cbdc.tar.gz miasm-04ae248954d5638aa836cf609e2bb4c50246cbdc.zip | |
x86/sem: fix bad return
| -rw-r--r-- | miasm2/arch/x86/sem.py | 8 |
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): |