There should be no changes ??!!
[libfirm] / testprograms / irr_loop_example.c
index b567cc9..51f63be 100644 (file)
@@ -111,13 +111,16 @@ int main(int argc, char **argv)
   add_in_edge (irg->end_block, x);
   mature_block (irg->end_block);
 
+  /* verify the graph */
+  vrfy_graph(irg);
+
   printf("\nDone building the graph..\n");
   printf("Dumping the graph and a control flow graph.\n");
   dump_ir_block_graph (irg);
   dump_cfg (irg);
 
   printf("use xvcg to view these graphs:\n");
-  printf("/ben/trapp/bin/i486/xvcg GRAPHNAME\n");
+  printf("/ben/goetz/bin/xvcg GRAPHNAME\n");
 
   return (0);
 }