finish support for custom backend node attributes, separate x87 attributes from norma...
[libfirm] / ir / be / bespilloptions.c
index b25b237..1f7d561 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Author:      Daniel Grund, Sebastian Hack, Matthias Braun
- * Date:               29.09.2005
- * Copyright:   (c) Universitaet Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+/**
+ * @file
+ * @brief       Option handling for spiller.
+ * @author      Daniel Grund, Sebastian Hack, Matthias Braun
+ * @date        29.09.2005
+ * @version     $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -64,7 +65,7 @@ void be_do_spill(be_irg_t *birg, const arch_register_class_t* cls)
        }
 }
 
-void be_init_spill(void)
+void be_init_spilloptions(void)
 {
        lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
        lc_opt_entry_t *spill_grp = lc_opt_get_grp(be_grp, "spill");
@@ -74,4 +75,4 @@ void be_init_spill(void)
                               &spillers, (void**) &selected_spiller);
 }
 
-BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spill);
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spilloptions);