From: Götz Lindenmaier Date: Thu, 14 Feb 2002 16:54:30 +0000 (+0000) Subject: as always I forgot to check the testprograms ... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8e1b80d5f447975fc85c9ed6dc747cc288362530;p=libfirm as always I forgot to check the testprograms ... [r314] --- diff --git a/ir/ir/irdump.h b/ir/ir/irdump.h index ec6d921f3..54a2d1924 100644 --- a/ir/ir/irdump.h +++ b/ir/ir/irdump.h @@ -217,7 +217,7 @@ void dump_ir_block_graph_w_types (ir_graph *irg); */ void dump_all_ir_graphs (void dump_graph(ir_graph*)); -/****m* irdump/turn_of_edge_labels +/****m* irdump/turn_off_edge_labels * * NAME * turn_off_edge_labels diff --git a/testprograms/if_while_example.c b/testprograms/if_while_example.c index 2c58c7680..9ff8250f7 100644 --- a/testprograms/if_while_example.c +++ b/testprograms/if_while_example.c @@ -43,7 +43,7 @@ main(void) printf("\nCreating an IR graph: IF_WHILE_EXAMPLE...\n"); init_firm (); - turn_of_edge_labels(); + turn_off_edge_labels(); set_optimize(1); set_opt_constant_folding(0); /* so that the stupid tests are not optimized. */ diff --git a/testprograms/oo_inline_example.c b/testprograms/oo_inline_example.c index 4f482f185..d6f7d94c7 100644 --- a/testprograms/oo_inline_example.c +++ b/testprograms/oo_inline_example.c @@ -290,7 +290,7 @@ main(void) } printf("Dumping graphs of all procedures and a type graph.\n"); - turn_of_edge_labels(); + turn_off_edge_labels(); dump_all_ir_graphs(dump_ir_block_graph); dump_all_ir_graphs(dump_ir_block_graph_w_types); dump_all_types(); diff --git a/testprograms/while_example.c b/testprograms/while_example.c index df02e5415..e6d92ac16 100644 --- a/testprograms/while_example.c +++ b/testprograms/while_example.c @@ -123,7 +123,7 @@ main(void) /* output the vcg file */ printf("Done building the graph. Dumping it.\n"); - turn_of_edge_labels(); + turn_off_edge_labels(); dump_all_types(); dump_ir_block_graph (irg); printf("Use xvcg to view this graph:\n");