]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg/ppc: Remove redundant comparison from brcond2
authormalc <av1474@comtv.ru>
Sun, 18 Apr 2010 04:46:29 +0000 (08:46 +0400)
committermalc <av1474@comtv.ru>
Sun, 18 Apr 2010 04:46:29 +0000 (08:46 +0400)
Signed-off-by: malc <av1474@comtv.ru>
tcg/ppc/tcg-target.c

index d559214a627449fa2bb2d0abdb24cd025bd640ef..2b8592892eb697b33252387d0b61a5822429055c 100644 (file)
@@ -1106,10 +1106,9 @@ static void tcg_out_cr7eq_from_cond (TCGContext *s, const TCGArg *args,
     case TCG_COND_GEU:
         op = (b->bit1 != b->bit2) ? CRANDC : CRAND;
         tcg_out_cmp (s, b->cond2, args[1], args[3], const_args[3], 5);
-        tcg_out_cmp (s, TCG_COND_EQ, args[1], args[3], const_args[3], 6);
         tcg_out_cmp (s, tcg_unsigned_cond (cond), args[0], args[2],
                      const_args[2], 7);
-        tcg_out32 (s, op | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, b->bit2));
+        tcg_out32 (s, op | BT (7, CR_EQ) | BA (5, CR_EQ) | BB (7, b->bit2));
         tcg_out32 (s, CROR | BT (7, CR_EQ) | BA (5, b->bit1) | BB (7, CR_EQ));
         break;
     default: