From: Michael Beck Date: Thu, 25 Jan 2007 23:11:58 +0000 (+0000) Subject: Fixed wrong assert X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=33156625f03269b380111aef34af2b8e0df17bd7;p=libfirm Fixed wrong assert [r8560] --- 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);