From: Richard Henderson Date: Fri, 5 Apr 2013 18:10:28 +0000 (-0400) Subject: tcg-s390: Fix merge error in tgen_brcond X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~900^2~59^2~422^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b879f3084650410709051202e0e834b903b0858c;p=sdk%2Femulator%2Fqemu.git tcg-s390: Fix merge error in tgen_brcond When the TCG condition codes were re-organized last year, we failed to update all of the "old-style" tests for unsigned. Signed-off-by: Richard Henderson --- diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c index 8e660b318d..7d6f777081 100644 --- a/tcg/s390/tcg-target.c +++ b/tcg/s390/tcg-target.c @@ -1231,7 +1231,7 @@ static void tgen_brcond(TCGContext *s, TCGType type, TCGCond c, int cc; if (facilities & FACILITY_GEN_INST_EXT) { - bool is_unsigned = (c > TCG_COND_GT); + bool is_unsigned = is_unsigned_cond(c); bool in_range; S390Opcode opc;