*** empty log message ***
[libfirm] / testprograms / global_var_example.c
index 741f219..956192f 100644 (file)
@@ -105,6 +105,9 @@ int main(int argc, char **argv)
   /* Now we can mature the end block as all it's predecessors are known. */
   mature_block (irg->end_block);
 
+  /* verify the graph */
+  irg_vrfy(irg);
+
   printf("\nDone building the graph.  Dumping it.\n");
   dump_ir_block_graph (irg);
   dump_ir_graph_w_types (irg);
@@ -113,6 +116,4 @@ int main(int argc, char **argv)
   printf("/ben/goetz/bin/xvcg GRAPHNAME\n");
 
   return (0);
-
-
 }