diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-07-28 21:35:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-28 21:35:59 +0200 |
| commit | 36149820780dbd2aa596275944cfda644fd979a2 (patch) | |
| tree | ccad47058d5b9b953436b1a6ede47080060ac05b | |
| parent | 78a79ddf1425e32e0199569e932397164ec28bcd (diff) | |
| parent | f770c1e026df28a88335781b701619818f554674 (diff) | |
| download | miasm-36149820780dbd2aa596275944cfda644fd979a2.tar.gz miasm-36149820780dbd2aa596275944cfda644fd979a2.zip | |
Merge pull request #400 from commial/fix/duplicate
Remove duplicate call to mod_pc
| -rw-r--r-- | miasm2/arch/x86/sem.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index 28e42353..d3e976c2 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -4484,7 +4484,6 @@ class ir_x86_16(ir): instr_ir, extra_ir = mnemo_func[ instr.name.lower()](self, instr, *args) - self.mod_pc(instr, instr_ir, extra_ir) self.mod_pc(instr, instr_ir, extra_ir) instr.additional_info.except_on_instr = False |