From: Richard Henderson Date: Mon, 25 Mar 2024 21:04:06 +0000 (-1000) Subject: target/hppa: Use TCG_COND_TST* in do_unit_zero_cond X-Git-Tag: v9.1.0-rc0~105^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25f97be7236cc96bccce35f27999b0289c2b221f;p=thirdparty%2Fqemu.git target/hppa: Use TCG_COND_TST* in do_unit_zero_cond Reviewed-by: Helge Deller Signed-off-by: Richard Henderson --- diff --git a/target/hppa/translate.c b/target/hppa/translate.c index 62cc3c3117e..b19d7c64fe0 100644 --- a/target/hppa/translate.c +++ b/target/hppa/translate.c @@ -1006,9 +1006,8 @@ static DisasCond do_unit_zero_cond(unsigned cf, bool d, TCGv_i64 res) tmp = tcg_temp_new_i64(); tcg_gen_subi_i64(tmp, res, ones); tcg_gen_andc_i64(tmp, tmp, res); - tcg_gen_andi_i64(tmp, tmp, sgns); - return cond_make_ti(cf & 1 ? TCG_COND_EQ : TCG_COND_NE, tmp, 0); + return cond_make_ti(cf & 1 ? TCG_COND_TSTEQ : TCG_COND_TSTNE, tmp, sgns); } static TCGv_i64 get_carry(DisasContext *ctx, bool d,