From 5d7a456481835b991a45c8035f9dfcf0c87e0d61 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sat, 18 Mar 2006 12:03:03 +0000 Subject: [PATCH] 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] --- ir/common/firm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.20.1