Commit bdc4e053d15f6edd09f8600c93f0a4ba49065cff
1 parent
53939066
target-ppc: indentation fixes
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5656 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
4 additions
and
5 deletions
target-ppc/translate.c
... | ... | @@ -908,7 +908,7 @@ static always_inline void gen_op_arith_compute_ca(DisasContext *ctx, TCGv arg1, |
908 | 908 | tcg_gen_ext32u_tl(t1, arg2); |
909 | 909 | if (sub) { |
910 | 910 | tcg_gen_brcond_tl(TCG_COND_GTU, t0, t1, l1); |
911 | - } else { | |
911 | + } else { | |
912 | 912 | tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1); |
913 | 913 | } |
914 | 914 | } else |
... | ... | @@ -3488,7 +3488,7 @@ static always_inline void gen_goto_tb (DisasContext *ctx, int n, |
3488 | 3488 | tcg_gen_movi_tl(cpu_nip, dest & ~3); |
3489 | 3489 | if (unlikely(ctx->singlestep_enabled)) { |
3490 | 3490 | if ((ctx->singlestep_enabled & |
3491 | - (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) && | |
3491 | + (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) && | |
3492 | 3492 | ctx->exception == POWERPC_EXCP_BRANCH) { |
3493 | 3493 | target_ulong tmp = ctx->nip; |
3494 | 3494 | ctx->nip = dest; |
... | ... | @@ -3592,7 +3592,6 @@ static always_inline void gen_bcond (DisasContext *ctx, int type) |
3592 | 3592 | } |
3593 | 3593 | } |
3594 | 3594 | if (type == BCOND_IM) { |
3595 | - | |
3596 | 3595 | target_ulong li = (target_long)((int16_t)(BD(ctx->opcode))); |
3597 | 3596 | if (likely(AA(ctx->opcode) == 0)) { |
3598 | 3597 | gen_goto_tb(ctx, 0, ctx->nip + li - 4); |
... | ... | @@ -5291,7 +5290,7 @@ static always_inline void gen_405_mulladd_insn (DisasContext *ctx, |
5291 | 5290 | tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1); |
5292 | 5291 | tcg_gen_xor_tl(t1, cpu_gpr[rt], t0); |
5293 | 5292 | tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1); |
5294 | - if (opc3 & 0x02) { | |
5293 | + if (opc3 & 0x02) { | |
5295 | 5294 | /* Saturate */ |
5296 | 5295 | tcg_gen_sari_tl(t0, cpu_gpr[rt], 31); |
5297 | 5296 | tcg_gen_xori_tl(t0, t0, 0x7fffffff); |
... | ... | @@ -5299,7 +5298,7 @@ static always_inline void gen_405_mulladd_insn (DisasContext *ctx, |
5299 | 5298 | } else { |
5300 | 5299 | /* Unsigned */ |
5301 | 5300 | tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1); |
5302 | - if (opc3 & 0x02) { | |
5301 | + if (opc3 & 0x02) { | |
5303 | 5302 | /* Saturate */ |
5304 | 5303 | tcg_gen_movi_tl(t0, UINT32_MAX); |
5305 | 5304 | } | ... | ... |