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 <rth@twiddle.net>
This commit is contained in:
Richard Henderson 2013-04-05 14:10:28 -04:00
parent 78c9f7c5b0
commit b879f30846
1 changed files with 1 additions and 1 deletions

View File

@ -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;