tcg/aarch64: Fix tcg_out_brcond for test comparisons
authorRichard Henderson <richard.henderson@linaro.org>
Sat, 9 Mar 2024 17:37:08 +0000 (17:37 +0000)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 12 Mar 2024 14:09:21 +0000 (04:09 -1000)
When converting test vs UINT32_MAX to compare vs 0, we need to
adjust the condition to match.

Fixes: 34aff3c2e06 ("tcg/aarch64: Generate CBNZ for TSTNE of UINT32_MAX")
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
tcg/aarch64/tcg-target.c.inc

index 38446c167e3a7dfce20ce6ab47432a3af28c96fa..56fc9cb9e008e1942bc13fbc38702eef7d0fe223 100644 (file)
@@ -1464,6 +1464,7 @@ static void tcg_out_brcond(TCGContext *s, TCGType ext, TCGCond c, TCGArg a,
     case TCG_COND_TSTNE:
         /* tst xN,0xffffffff; b.ne L -> cbnz wN,L */
         if (b_const && b == UINT32_MAX) {
+            c = tcg_tst_eqne_cond(c);
             ext = TCG_TYPE_I32;
             need_cmp = false;
             break;