diff options
| author | Camille Mougey <commial@gmail.com> | 2017-01-06 14:36:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-06 14:36:26 +0100 |
| commit | fd1f440961b24872a5a9c0da19cfc94d1d955386 (patch) | |
| tree | 6556ddfd9a7082b2ad8bb2c72228e3d0ab6fbdea /miasm2/arch/msp430/ira.py | |
| parent | c5d47bd8cdb510c78501adae460b35d122042563 (diff) | |
| parent | 58e436386f738b2ce38ad1db8b13fc6e16fe293a (diff) | |
| download | miasm-fd1f440961b24872a5a9c0da19cfc94d1d955386.tar.gz miasm-fd1f440961b24872a5a9c0da19cfc94d1d955386.zip | |
Merge pull request #469 from serpilliere/updt_call_effects_api
Updt call effects api
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/msp430/ira.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/msp430/ira.py b/miasm2/arch/msp430/ira.py index 2d6fdc8f..bf777775 100644 --- a/miasm2/arch/msp430/ira.py +++ b/miasm2/arch/msp430/ira.py @@ -50,7 +50,7 @@ class ir_a_msp430(ir_a_msp430_base): l = bloc.lines[-1] lbl = bloc.get_next() new_lbl = self.gen_label() - irs = self.call_effects(pc_val) + irs = self.call_effects(pc_val, l) irs.append(AssignBlock([ExprAff(self.IRDst, ExprId(lbl, size=self.pc.size))])) nbloc = irbloc(new_lbl, irs) |