diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-04-14 23:04:46 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-04-20 12:36:51 +0200 |
| commit | 4d511eab15845e519e5a8b0d9f742a550768b709 (patch) | |
| tree | 418429f7a3cdedf5efdf074126bc76dbd04f9657 /miasm2/arch/x86/ira.py | |
| parent | a9b3d7f1a9014336b46c6dca20332a6deaccfc6d (diff) | |
| download | miasm-4d511eab15845e519e5a8b0d9f742a550768b709.tar.gz miasm-4d511eab15845e519e5a8b0d9f742a550768b709.zip | |
IRBlock: move lines in AssignBlock
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/ira.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miasm2/arch/x86/ira.py b/miasm2/arch/x86/ira.py index 1fcaaa52..d0bebfb6 100644 --- a/miasm2/arch/x86/ira.py +++ b/miasm2/arch/x86/ira.py @@ -53,7 +53,9 @@ class ir_a_x86_64(ir_x86_64, ir_a_x86_16): )), ExprAff(self.sp, ExprOp('call_func_stack', ad, self.sp)), - ])] + ], + instr + )] def sizeof_char(self): return 8 |