irn_vrfy_irg () added that allows to specify tho IR graph
[libfirm] / ir / ir / irgraph_t.h
index d928fba..af39b5a 100644 (file)
@@ -80,8 +80,6 @@ struct ir_graph {
 
 void init_irgraph(void);
 
-INLINE long get_irg_graph_nr(ir_graph *irg) ;
-
 /** Make a rudimentary ir graph for the constant code.
    Must look like a correct irg, spare everything else. */
 ir_graph *new_const_code_irg(void);
@@ -89,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_ */