diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-01-08 23:20:41 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-01-08 23:20:41 -0800 |
commit | d42234e4af41481a3db6f6ea5173bb1623b30d22 (patch) | |
tree | 23ba05bba99338326af19e4b2f7d88caa5657ec4 /m68k_core_x86.c | |
parent | 7565848dd7a5d4dd1f762aeebd31d5835fe14835 (diff) |
A couple more indentation fixes
Diffstat (limited to 'm68k_core_x86.c')
-rw-r--r-- | m68k_core_x86.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m68k_core_x86.c b/m68k_core_x86.c index 938b071..9787b9c 100644 --- a/m68k_core_x86.c +++ b/m68k_core_x86.c @@ -649,7 +649,7 @@ void translate_m68k_move(m68k_options * opts, m68kinst * inst) mov_ir(code, inst->address, opts->gen.scratch2, SZ_D); if (src.base == opts->gen.scratch1 && !(inst->dst.params.regs.sec & 1)) { push_r(code, opts->gen.scratch1); - } + } calc_index_disp8(opts, &inst->dst, opts->gen.scratch2); if (src.base == opts->gen.scratch1 && !(inst->dst.params.regs.sec & 1)) { pop_r(code, opts->gen.scratch1); @@ -691,7 +691,7 @@ void translate_m68k_move(m68k_options * opts, m68kinst * inst) if (inst->dst.addr_mode != MODE_AREG) { cmp_ir(code, 0, flags_reg, inst->extra.size); update_flags(opts, N|Z|V0|C0); -} + } if (inst->dst.addr_mode != MODE_REG && inst->dst.addr_mode != MODE_AREG) { m68k_write_size(opts, inst->extra.size); if (inst->dst.addr_mode == MODE_AREG_POSTINC) { |