replaced all recursive computed_value calls ba value_of()
[libfirm] / ir / ir / irgraph.h
index bd32f86..e9c1004 100644 (file)
@@ -88,9 +88,8 @@ void      set_current_ir_graph(ir_graph *graph);
 
 /** This flag indicate the current view. The behaviour of some methods
  * (get_irn_*, set_irn_*) is influenced by this flag. */
-extern bool interprocedural_view;
-bool get_interprocedural_view(void);
-void set_interprocedural_view(bool state);
+int get_interprocedural_view(void);
+void set_interprocedural_view(int state);
 
 /** Create a new ir graph to built ir for a procedure.
  *
@@ -355,4 +354,7 @@ void          inc_irg_block_visited (ir_graph *irg);
 unsigned long get_irg_block_visited (ir_graph *irg);
 void          set_irg_block_visited (ir_graph *irg, unsigned long i);
 
+/* is irg a pseudo graph for analysis? */
+int      is_pseudo_ir_graph(ir_graph *irg);
+
 # endif /* _IRGRAPH_H_ */