diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-02-09 15:46:45 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-02-09 15:59:17 +0100 |
| commit | 4a6f952905200687e5ff04ce2199defb481bbbf1 (patch) | |
| tree | 617b8669d2eef8710aed4cea94352e0fe9a4f704 | |
| parent | c77ba7b54724e8fd0c8397f1487e7014bcc56585 (diff) | |
| download | miasm-4a6f952905200687e5ff04ce2199defb481bbbf1.tar.gz miasm-4a6f952905200687e5ff04ce2199defb481bbbf1.zip | |
Aarch64: remove space
| -rw-r--r-- | miasm2/arch/aarch64/sem.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/miasm2/arch/aarch64/sem.py b/miasm2/arch/aarch64/sem.py index 4f0b5241..56c37710 100644 --- a/miasm2/arch/aarch64/sem.py +++ b/miasm2/arch/aarch64/sem.py @@ -199,7 +199,7 @@ def orn(arg1, arg2, arg3): @sbuild.parse def bic(arg1, arg2, arg3): arg1 = arg2 & (~extend_arg(arg2, arg3)) - + def bics(ir, instr, arg1, arg2, arg3): e = [] @@ -746,9 +746,9 @@ mnemo_func.update({ 'b.le': b_le, 'b.ls': b_ls, 'b.lt': b_lt, - + 'bics': bics, - + 'ret': ret, 'stp': stp, 'ldp': ldp, @@ -817,7 +817,6 @@ class ir_aarch64l(IntermediateRepresentation): instr_ir, extra_ir = get_mnemo_expr(self, instr, *args) self.mod_pc(instr, instr_ir, extra_ir) instr_ir, extra_ir = self.del_dst_zr(instr, instr_ir, extra_ir) - return instr_ir, extra_ir def expr_fix_regs_for_mode(self, e): |