diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2015-04-03 18:24:24 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-04-07 19:08:52 -0400 |
commit | 5d77cf2895edea277878a526b4c47abfdbf6ffd2 (patch) | |
tree | 9c4be28c5d83a2ec40e295be0ab0a48195676948 | |
parent | f6c70ff4de7f244f2aac0b25925fdcfcfdfe4578 (diff) |
MIPS: math-emu: Reindent `bc_op' emulation
Correct the double-tab indentation of the branch-likely not-taken case.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9674/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/math-emu/cp1emu.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/mips/math-emu/cp1emu.c b/arch/mips/math-emu/cp1emu.c index b30bf65c7d7d..3c5b1c8d73ee 100644 --- a/arch/mips/math-emu/cp1emu.c +++ b/arch/mips/math-emu/cp1emu.c | |||
@@ -1192,17 +1192,17 @@ emul: | |||
1192 | */ | 1192 | */ |
1193 | return mips_dsemul(xcp, ir, contpc); | 1193 | return mips_dsemul(xcp, ir, contpc); |
1194 | } else if (likely) { /* branch not taken */ | 1194 | } else if (likely) { /* branch not taken */ |
1195 | /* | 1195 | /* |
1196 | * branch likely nullifies | 1196 | * branch likely nullifies |
1197 | * dslot if not taken | 1197 | * dslot if not taken |
1198 | */ | 1198 | */ |
1199 | xcp->cp0_epc += dec_insn.pc_inc; | 1199 | xcp->cp0_epc += dec_insn.pc_inc; |
1200 | contpc += dec_insn.pc_inc; | 1200 | contpc += dec_insn.pc_inc; |
1201 | /* | 1201 | /* |
1202 | * else continue & execute | 1202 | * else continue & execute |
1203 | * dslot as normal insn | 1203 | * dslot as normal insn |
1204 | */ | 1204 | */ |
1205 | } | 1205 | } |
1206 | break; | 1206 | break; |
1207 | 1207 | ||
1208 | default: | 1208 | default: |