From 7ff74f4ddc0ba59d4384b289b28711f02e2a73d0 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 15 Dec 2008 12:18:50 +0000 Subject: [PATCH] - fixed warning [r24680] --- ir/opt/combo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/opt/combo.c b/ir/opt/combo.c index 1ab9371b4..a2f8ee934 100644 --- a/ir/opt/combo.c +++ b/ir/opt/combo.c @@ -300,7 +300,7 @@ static void check_opcode(const partition_t *Z) { } first = 0; } else { - assert(key.code == get_irn_opcode(irn)); + assert((unsigned)key.code == get_irn_opcode(irn)); assert(key.mode == get_irn_mode(irn)); assert(key.arity == get_irn_arity(irn)); -- 2.20.1