irn_vrfy_irg () added that allows to specify tho IR graph
[libfirm] / ir / ir / irgraph_t.h
index f970630..af39b5a 100644 (file)
@@ -78,7 +78,7 @@ struct ir_graph {
 #endif
 };
 
-INLINE long get_irg_graph_nr(ir_graph *irg) ;
+void init_irgraph(void);
 
 /** Make a rudimentary ir graph for the constant code.
    Must look like a correct irg, spare everything else. */
@@ -87,4 +87,7 @@ ir_graph *new_const_code_irg(void);
 INLINE void
 set_irg_pinned (ir_graph *irg, op_pinned p);
 
+/** Returns the obstack associated with the graph. */
+struct obstack *get_irg_obstack(ir_graph *irg);
+
 # endif /* _IRGRAPH_T_H_ */