From 33156625f03269b380111aef34af2b8e0df17bd7 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 25 Jan 2007 23:11:58 +0000 Subject: [PATCH] Fixed wrong assert [r8560] --- ir/ir/irphase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/ir/irphase.c b/ir/ir/irphase.c index c684de463..60a8ecf2d 100644 --- a/ir/ir/irphase.c +++ b/ir/ir/irphase.c @@ -20,7 +20,7 @@ phase_t *phase_init(phase_t *ph, const char *name, ir_graph *irg, unsigned growth_factor, phase_irn_data_init_t *data_init) { - assert(growth_factor >= 1.0 && "growth factor must greater or equal to 1.0"); + assert(growth_factor >= 256 && "growth factor must greater or equal to 256/256"); assert(data_init && "You must provide a data constructor"); obstack_init(&ph->obst); -- 2.20.1