added call-projnum-requirement magic
[libfirm] / ir / be / beutil.h
index ca7e82b..8df13b8 100644 (file)
@@ -2,11 +2,11 @@
 #ifndef _BEUTIL_H
 #define _BEUTIL_H
 
+#include "firm_config.h"
+
 #include <stdio.h>
 
 #include "irnode.h"
-#include "config.h"
-
 #include "bearch.h"
 
 /** Undefine this to disable debugging mode. */
@@ -21,7 +21,7 @@
  */
 static INLINE const ir_node *get_block(const ir_node *irn)
 {
-  return is_Block(irn) ? irn : get_nodes_block(irn);
+       return is_Block(irn) ? irn : get_nodes_block(irn);
 }
 
 static INLINE int is_firm_be_mode(const ir_mode *mode)
@@ -72,7 +72,7 @@ void localize_consts(ir_graph *irg);
  */
 void dump_allocated_irg(arch_env_t *env, ir_graph *irg, char *suffix);
 
-
+void be_clear_links(ir_graph *irg);
 
 static INLINE FILE *ffopen(const char *base, const char *ext, const char *mode) {
        FILE *out;