From 1599b6c447b2d5bb309f65a6de9432c087195e20 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=B6tz=20Lindenmaier?= Date: Thu, 5 Dec 2002 09:09:45 +0000 Subject: [PATCH] STupid assertion is bad... [r530] --- ir/ir/ircons.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ir/ir/ircons.c b/ir/ir/ircons.c index 0d04c8561..b95d09a9f 100644 --- a/ir/ir/ircons.c +++ b/ir/ir/ircons.c @@ -2164,7 +2164,6 @@ INLINE void set_value (int pos, ir_node *value) { assert(get_irg_phase_state (current_ir_graph) == phase_building); - assert(!get_Block_matured(current_ir_graph->current_block)); assert(pos+1 < current_ir_graph->n_loc); current_ir_graph->current_block->attr.block.graph_arr[pos + 1] = value; } @@ -2185,7 +2184,6 @@ set_store (ir_node *store) { /* GL: one could call set_value instead */ assert(get_irg_phase_state (current_ir_graph) == phase_building); - assert(!get_Block_matured(current_ir_graph->current_block)); current_ir_graph->current_block->attr.block.graph_arr[0] = store; } -- 2.20.1