- do not use tuple result for builtins, not needed yet
[libfirm] / include / libfirm / callgraph.h
index 63ad031..139f00a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -94,7 +94,6 @@ int       get_irg_loop_depth(ir_graph *irg);
     this irg. */
 int       get_irg_recursion_depth(ir_graph *irg);
 
-#ifdef INTERPROCEDURAL_VIEW
 /** Returns the method execution frequency of a graph. */
 double get_irg_method_execution_frequency(ir_graph *irg);
 
@@ -127,7 +126,8 @@ typedef void callgraph_walk_func(ir_graph *g, void *env);
  * @param post - walker function, executed after the predecessor of a node are visited
  * @param env  - environment, passed to pre and post
  */
-void callgraph_walk(callgraph_walk_func *pre, callgraph_walk_func *post, void *env);
+void callgraph_walk(callgraph_walk_func *pre, callgraph_walk_func *post,
+                    void *env);
 
 /**
  * Compute the backedges that represent recursions and a looptree.
@@ -181,7 +181,4 @@ void                     set_irp_loop_nesting_depth_state(loop_nesting_depth_sta
 /** Marks the nesting depth state of the program representation as inconsistent. */
 void                     set_irp_loop_nesting_depth_state_inconsistent(void);
 
-#endif
-
-
 #endif /* _CALLGRAPH_H_ */