- moved peephole_IncSP_IncSP() to bepeephole.c, as this is a generic function and...
[libfirm] / testprograms / recursions.c
index ccf6bcf..e400466 100644 (file)
@@ -52,7 +52,7 @@ void close_method(int n_ins, ir_node **ins) {
   mature_immBlock (get_cur_block());
   add_immBlock_pred  (get_cur_end_block(), x);
   mature_immBlock (get_cur_end_block());
-  finalize_cons(current_ir_graph);
+  irg_finalize_cons(current_ir_graph);
 }
 
 
@@ -172,10 +172,10 @@ main(void)
 
   entity **free_methods;
   int arr_len;
-  cgana(&arr_len, &free_methods, 0);
+  cgana(&arr_len, &free_methods);
   compute_callgraph();
   find_callgraph_recursions();
-  dump_callgraph("");
+  //dump_callgraph("");  /* Order of edges depends on set.c, which is not deterministic. */
   cg_construct(arr_len, free_methods);
 
   printf("Use xvcg to view these graphs:\n");