Addded method to replace in array os a node in irnode
[libfirm] / ir / ir / irprog_t.h
index d34b2b5..82bff49 100644 (file)
@@ -6,15 +6,14 @@
 
 struct ir_prog {
   firm_kind kind;
-  ir_graph *main_irg;              /* entry point to the compiled program */
+  ir_graph  *main_irg;            /* entry point to the compiled program */
                   /* or a list, in case we compile a library or the like? */
-  ir_graph **graphs;               /* all graphs in the ir */
-  type_class *glob_type;           /* global type.  Class as it can have
-                                     fields and procedures.  Does this work?
-                                     Better name??? @@@ */
-  type **types;                    /* all types in the ir */
-  /*struct obstack *obst;          * @@@ Should we place all types and
-                                      entities on an obstack, too? */
+  ir_graph **graphs;              /* all graphs in the ir */
+  type      *glob_type;           /* global type.  Must be a class as it can
+                                    have fields and procedures.  */
+  type     **types;               /* all types in the ir */
+  /*struct obstack *obst;         * @@@ Should we place all types and
+                                     entities on an obstack, too? */
 #ifdef DEBUG_libfirm
   long max_node_nr;                /* to generate unique numbers for nodes. */
 #endif