diff options
| author | Camille Mougey <commial@gmail.com> | 2018-06-11 10:10:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-11 10:10:57 +0200 |
| commit | 0c9d78d3a209176ee98b570e3c8ef423231213cb (patch) | |
| tree | f157569859dc79c1c50ecc04e252ff334a587683 /miasm2/arch/arm/disasm.py | |
| parent | 89cc39af7c54879684a6df0560ecf0a681134366 (diff) | |
| parent | 8a4172f47294a6adb2ed03c9f685a9bde8a7bb63 (diff) | |
| download | miasm-0c9d78d3a209176ee98b570e3c8ef423231213cb.tar.gz miasm-0c9d78d3a209176ee98b570e3c8ef423231213cb.zip | |
Merge pull request #755 from serpilliere/remove_sp_in_add_cst
AsmBlock: remove symbol_pool in add_cst
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/arm/disasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/disasm.py b/miasm2/arch/arm/disasm.py index 956a894b..205e2a17 100644 --- a/miasm2/arch/arm/disasm.py +++ b/miasm2/arch/arm/disasm.py @@ -25,7 +25,7 @@ def cb_arm_fix_call(mn, cur_bloc, symbol_pool, offsets_to_dis, *args, **kwargs): if not l2.args[1] in values: return loc_key_cst = self.symbol_pool.getby_offset_create(l1.offset + 4) - cur_bloc.add_cst(loc_key_cst, AsmConstraint.c_next, symbol_pool) + cur_bloc.add_cst(loc_key_cst, AsmConstraint.c_next) offsets_to_dis.add(l1.offset + 4) cb_arm_funcs = [cb_arm_fix_call] |