array: Add and use NEW_ARR_DZ().
[libfirm] / ir / be / bera.c
index 4e408d8..a7584a5 100644 (file)
  * @brief       Base routines for register allocation.
  * @author      Sebastian Hack
  * @date        22.11.2004
- * @version     $Id$
  */
 #include "config.h"
 
 #include <stdlib.h>
 
 #include "pset.h"
-#include "impl.h"
 
 #include "irnode.h"
 #include "irmode.h"
 #include "irdom.h"
 #include "iredges.h"
+#include "irtools.h"
 
 #include "bera.h"
 #include "beutil.h"
@@ -53,15 +52,15 @@ void be_register_allocator(const char *name, be_ra_t *allocator)
        be_add_module_to_list(&register_allocators, name, allocator);
 }
 
-void be_allocate_registers(be_irg_t *birg)
+void be_allocate_registers(ir_graph *irg)
 {
        assert(selected_allocator != NULL);
        if (selected_allocator != NULL) {
-               selected_allocator->allocate(birg);
+               selected_allocator->allocate(irg);
        }
 }
 
-BE_REGISTER_MODULE_CONSTRUCTOR(be_init_ra);
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_ra)
 void be_init_ra(void)
 {
        lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");