as always I forgot to check the testprograms ...
authorGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Thu, 14 Feb 2002 16:54:30 +0000 (16:54 +0000)
committerGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Thu, 14 Feb 2002 16:54:30 +0000 (16:54 +0000)
[r314]

ir/ir/irdump.h
testprograms/if_while_example.c
testprograms/oo_inline_example.c
testprograms/while_example.c

index ec6d921..54a2d19 100644 (file)
@@ -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
index 2c58c76..9ff8250 100644 (file)
@@ -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. */
index 4f482f1..d6f7d94 100644 (file)
@@ -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();
index df02e54..e6d92ac 100644 (file)
@@ -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");