diff options
author | malc <av1474@comtv.ru> | 2010-04-18 08:46:29 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2010-04-18 08:46:29 +0400 |
commit | 606257c6f2dbbaa63f462e557f15a5f7364967a6 (patch) | |
tree | e441a0f2e84b62280b55efdb1cf8071351942cca | |
parent | 2d8ebcf94ee461dea9eb363be7becb769d9a962f (diff) | |
download | hqemu-606257c6f2dbbaa63f462e557f15a5f7364967a6.zip hqemu-606257c6f2dbbaa63f462e557f15a5f7364967a6.tar.gz |
tcg/ppc: Remove redundant comparison from brcond2
Signed-off-by: malc <av1474@comtv.ru>
-rw-r--r-- | tcg/ppc/tcg-target.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c index d559214..2b85928 100644 --- a/tcg/ppc/tcg-target.c +++ b/tcg/ppc/tcg-target.c @@ -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: |