From 9ca3f7f3160365de9030e1a6128a871625abe346 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 21 Mar 2013 10:01:49 +0000 Subject: target-ppc: Use NARROW_MODE macro for tlbie Removing conditional compilation in the process. Signed-off-by: Richard Henderson Signed-off-by: Alexander Graf --- target-ppc/translate.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'target-ppc/translate.c') 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 } -- cgit v1.2.3