From: Richard Henderson Date: Thu, 21 Mar 2013 10:01:49 +0000 (+0000) Subject: target-ppc: Use NARROW_MODE macro for tlbie X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9ca3f7f3160365de9030e1a6128a871625abe346;p=qemu.git target-ppc: Use NARROW_MODE macro for tlbie Removing conditional compilation in the process. Signed-off-by: Richard Henderson Signed-off-by: Alexander Graf --- diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 3b47553878..5e741d1ab4 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -4320,15 +4320,14 @@ static void gen_tlbie(DisasContext *ctx) gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; } -#if defined(TARGET_PPC64) - if (!ctx->sf_mode) { + if (NARROW_MODE(ctx)) { TCGv t0 = tcg_temp_new(); tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]); gen_helper_tlbie(cpu_env, t0); tcg_temp_free(t0); - } else -#endif + } else { gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]); + } #endif }