Fixed a bug.
[libfirm] / ir / be / bechordal.h
index 4125693..0d6949f 100644 (file)
@@ -8,6 +8,9 @@
 #ifndef __BECHORDAL_H
 #define __BECHORDAL_H
 
+#include "irgraph.h"
+#include "irnode.h"
+
 /**
  * Allocate registers for an ir graph.
  * @param irg The graph.
@@ -15,6 +18,8 @@
  */
 void be_ra_chordal(ir_graph *irg);
 
-void be_ra_chordal_free(ir_graph *irg);
+void be_ra_chordal_done(ir_graph *irg);
+void be_ra_chordal_init(void);
+int phi_ops_interfere(const ir_node *a, const ir_node *b);
 
 #endif