Commit 9ca3f7f3 authored by Richard Henderson's avatar Richard Henderson Committed by Alexander Graf
Browse files

target-ppc: Use NARROW_MODE macro for tlbie



Removing conditional compilation in the process.

Signed-off-by: default avatarRichard Henderson <rth@twiddle.net>
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent c791fe84
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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
}