From 420e21896bb13b59c8fa9feb8ad296cfc5aef5f3 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 30 Nov 2004 15:08:31 +0000 Subject: [PATCH] fixed type, bugfix for out's [r4523] --- ir/ir/irdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ir/irdump.c b/ir/ir/irdump.c index 5a3e65db5..1c1031bf6 100644 --- a/ir/ir/irdump.c +++ b/ir/ir/irdump.c @@ -767,7 +767,7 @@ static INLINE int dump_node_info(FILE *F, ir_node *n) type *tp = get_entity_type(get_irg_entity(get_irn_irg(n))); fprintf(F, "start of method of type %s\n", get_type_name_ex(tp, &bad)); for (i = 0; i < get_method_n_params(tp); ++i) - fprintf(F, " param %d type: %s n", i, get_type_name_ex(get_method_param_type(tp, i), &bad)); + fprintf(F, " param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad)); if ((get_irp_ip_view_state() == ip_view_valid) && !get_interprocedural_view()) { ir_node *sbl = get_nodes_block(n); int i, n_cfgpreds = get_Block_cg_n_cfgpreds(sbl); @@ -1997,7 +1997,7 @@ dump_ir_graph (ir_graph *irg, const char *suffix ) /* dump the out edges in a separate walk */ if ((dump_out_edge_flag) && (get_irg_outs_state(irg) != outs_none)) { - irg_out_walk(get_irg_start(irg), dump_out_edge, NULL, NULL); + irg_out_walk(get_irg_start(irg), dump_out_edge, NULL, f); } vcg_close(f); -- 2.20.1