summaryrefslogtreecommitdiff
path: root/tcg/s390
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-09-24 14:21:39 -0700
committerAurelien Jarno <aurelien@aurel32.net>2012-10-06 18:48:39 +0200
commitbcc66562ad185e9c2a667b00426f625e2489bda9 (patch)
tree49d0897deed24aa4cdbf4e23bcdbf1dd9d36f936 /tcg/s390
parent457ebdcd91aa7f0df094e12a8c46235f0c7d4f9b (diff)
downloadqemu-bcc66562ad185e9c2a667b00426f625e2489bda9.tar.gz
tcg: Add is_unsigned_cond
Before we rearrange the TCG_COND enumeration, add a predicate for the (single) use of comparisons vs TCGCond. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/s390')
-rw-r--r--tcg/s390/tcg-target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c
index 4b4305952d..c0ef6ba9a6 100644
--- a/tcg/s390/tcg-target.c
+++ b/tcg/s390/tcg-target.c
@@ -1113,7 +1113,7 @@ static void tgen64_xori(TCGContext *s, TCGReg dest, tcg_target_ulong val)
static int tgen_cmp(TCGContext *s, TCGType type, TCGCond c, TCGReg r1,
TCGArg c2, int c2const)
{
- bool is_unsigned = (c > TCG_COND_GT);
+ bool is_unsigned = is_unsigned_cond(c);
if (c2const) {
if (c2 == 0) {
if (type == TCG_TYPE_I32) {