remove #ifdef HAVE_CONFIG_Hs
[libfirm] / ir / be / bera.c
index 4eb3aa9..0997b0d 100644 (file)
@@ -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.
  *
@@ -24,9 +24,7 @@
  * @date        22.11.2004
  * @version     $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #include <stdlib.h>
 
@@ -44,8 +42,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 +61,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",
                               &register_allocators, (void**) &selected_allocator);
-#endif
 }
 BE_REGISTER_MODULE_CONSTRUCTOR(init_be_ra);