X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=ir%2Fbe%2Fbera.c;h=ec462632979315053614ec06a2105e4902f376c6;hb=255a9cc77e3cdf878406d722cf8414063c87e99b;hp=8d15ac7c6620be3b5fcee72bb36a656813c7c094;hpb=57fb9fc8605ae538d91ca191301e0d3c111cc3ba;p=libfirm diff --git a/ir/be/bera.c b/ir/be/bera.c index 8d15ac7c6..ec4626329 100644 --- a/ir/be/bera.c +++ b/ir/be/bera.c @@ -24,14 +24,11 @@ * @date 22.11.2004 * @version $Id$ */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include #include "pset.h" -#include "impl.h" #include "irnode.h" #include "irmode.h" @@ -40,7 +37,7 @@ #include "bera.h" #include "beutil.h" -#include "besched_t.h" +#include "besched.h" #include "belive_t.h" #include "bemodule.h" @@ -50,19 +47,20 @@ static be_ra_t *selected_allocator = NULL; void be_register_allocator(const char *name, be_ra_t *allocator) { - if(selected_allocator == NULL) + if (selected_allocator == NULL) selected_allocator = allocator; be_add_module_to_list(®ister_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); + if (selected_allocator != NULL) { + selected_allocator->allocate(irg); } } +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"); @@ -70,4 +68,3 @@ void be_init_ra(void) be_add_module_list_opt(be_grp, "regalloc", "register allocator", ®ister_allocators, (void**) &selected_allocator); } -BE_REGISTER_MODULE_CONSTRUCTOR(init_be_ra);