Fixed liveness in loops an phi functions.
[libfirm] / ir / be / bechordal.h
index 4125693..8640b2f 100644 (file)
@@ -8,13 +8,17 @@
 #ifndef __BECHORDAL_H
 #define __BECHORDAL_H
 
+#include "irgraph.h"
+#include "irnode.h"
+
 /**
  * Allocate registers for an ir graph.
  * @param irg The graph.
- * @return Some internal data to be freed with be_ra_chordal_free().
+ * @return Some internal data to be freed with be_ra_chordal_done().
  */
 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);
 
 #endif