X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbera.c;h=8d15ac7c6620be3b5fcee72bb36a656813c7c094;hb=662fc44c951bdb45a9b7d9563e9ffbb87101b9e4;hp=4eb3aa90067070c6c386630d432dac2abf9f2250;hpb=79ed89a676afd08eb739330d46b85b1d1532aec1;p=libfirm diff --git a/ir/be/bera.c b/ir/be/bera.c index 4eb3aa900..8d15ac7c6 100644 --- a/ir/be/bera.c +++ b/ir/be/bera.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -44,8 +44,6 @@ #include "belive_t.h" #include "bemodule.h" -be_ra_timer_t *global_ra_timer = NULL; - /** The list of register allocators */ static be_module_list_entry_t *register_allocators = NULL; static be_ra_t *selected_allocator = NULL; @@ -65,12 +63,11 @@ void be_allocate_registers(be_irg_t *birg) } } -void be_init_ra(void) { -#ifdef WITH_LIBCORE +void be_init_ra(void) +{ lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be"); be_add_module_list_opt(be_grp, "regalloc", "register allocator", ®ister_allocators, (void**) &selected_allocator); -#endif } BE_REGISTER_MODULE_CONSTRUCTOR(init_be_ra);