From f583b47fe41548ee04415f819909282420150d87 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Mon, 3 Jul 2006 15:22:55 +0000 Subject: [PATCH] fixed assert condition --- ir/be/ia32/ia32_x87.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/ia32/ia32_x87.c b/ir/be/ia32/ia32_x87.c index bfd51e78f..b879c1668 100644 --- a/ir/be/ia32/ia32_x87.c +++ b/ir/be/ia32/ia32_x87.c @@ -252,7 +252,7 @@ static int x87_on_stack(const x87_state *state, int reg_idx) { * @param dbl_push if != 0 double pushes are allowd */ static void x87_push(x87_state *state, int reg_idx, ir_node *node, int dbl_push) { - assert(dbl_push || x87_on_stack(state, reg_idx) == -1 && "double push"); + assert((dbl_push || x87_on_stack(state, reg_idx) == -1) && "double push"); assert(state->depth < N_x87_REGS && "stack overrun"); ++state->depth; -- 2.20.1