Commit 5d77cf28 authored by Maciej W. Rozycki's avatar Maciej W. Rozycki Committed by Ralf Baechle

MIPS: math-emu: Reindent `bc_op' emulation

Correct the double-tab indentation of the branch-likely not-taken case.
Signed-off-by: default avatarMaciej W. Rozycki <macro@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9674/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent f6c70ff4
...@@ -1192,17 +1192,17 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx, ...@@ -1192,17 +1192,17 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx,
*/ */
return mips_dsemul(xcp, ir, contpc); return mips_dsemul(xcp, ir, contpc);
} else if (likely) { /* branch not taken */ } else if (likely) { /* branch not taken */
/* /*
* branch likely nullifies * branch likely nullifies
* dslot if not taken * dslot if not taken
*/ */
xcp->cp0_epc += dec_insn.pc_inc; xcp->cp0_epc += dec_insn.pc_inc;
contpc += dec_insn.pc_inc; contpc += dec_insn.pc_inc;
/* /*
* else continue & execute * else continue & execute
* dslot as normal insn * dslot as normal insn
*/ */
} }
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment