From: Michael Beck Date: Sat, 18 Mar 2006 12:03:03 +0000 (+0000) Subject: tarval_init_1() expects now the null_value. Bad things might happen if this is not... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=5d7a456481835b991a45c8035f9dfcf0c87e0d61;p=libfirm tarval_init_1() expects now the null_value. Bad things might happen if this is not 0l yet, so we did not allow it to be changed for the moment ... [r7467] --- diff --git a/ir/common/firm.c b/ir/common/firm.c index 1eb4b2ee9..4c35d24d6 100644 --- a/ir/common/firm.c +++ b/ir/common/firm.c @@ -89,7 +89,7 @@ init_firm(const firm_parameter_t *param) /* create the type kinds. */ init_tpop(); /* create an obstack and put all tarvals in a pdeq */ - init_tarval_1(); + init_tarval_1(0l); /* Builds a basic program representation, so modes can be added. */ init_irprog_1(); /* initialize all modes an ir node can consist of */