bearch: Disallow passing Projs to get_irn_ops().
[libfirm] / ir / be / bemodule.c
index 2495898..3fd65af 100644 (file)
@@ -1,20 +1,6 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
- *
  * This file is part of libFirm.
- *
- * This file may be distributed and/or modified under the terms of the
- * GNU General Public License version 2 as published by the Free Software
- * Foundation and appearing in the file LICENSE.GPL included in the
- * packaging of this file.
- *
- * Licensees holding valid libFirm Professional Edition licenses may use
- * this file in accordance with the libFirm Commercial License.
- * Agreement provided with the Software.
- *
- * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
 /**
@@ -22,7 +8,6 @@
  * @brief       Backend module interface.
  * @author      Matthias Braun
  * @date        29.09.2005
- * @version     $Id$
  */
 #include "config.h"
 
@@ -55,7 +40,7 @@ void be_init_copyilp2(void);
 void be_init_copynone(void);
 void be_init_copystat(void);
 void be_init_daemelspill(void);
-void be_init_dbgout(void);
+void be_init_dwarf(void);
 void be_init_arch_ia32(void);
 void be_init_arch_arm(void);
 void be_init_arch_amd64(void);
@@ -67,7 +52,6 @@ void be_init_peephole(void);
 void be_init_ra(void);
 void be_init_spillbelady(void);
 void be_init_ssaconstr(void);
-void be_init_stabs(void);
 void be_init_pref_alloc(void);
 void be_init_irgmod(void);
 void be_init_loopana(void);
@@ -100,7 +84,6 @@ void be_init_modules(void)
        be_init_blocksched();
        be_init_spill();
        be_init_spilloptions();
-       be_init_dbgout();
 
        be_init_listsched();
        be_init_sched_normal();
@@ -124,10 +107,10 @@ void be_init_modules(void)
        be_init_ra();
        be_init_spillbelady();
        be_init_daemelspill();
+       be_init_dwarf();
        be_init_ssaconstr();
        be_init_pref_alloc();
        be_init_state();
-       be_init_stabs();
 
        be_init_arch_ia32();
        be_init_arch_arm();
@@ -137,10 +120,6 @@ void be_init_modules(void)
 
        be_init_copyilp();
 
-#if PLUGIN_IR_BE_STA
-       be_init_arch_sta();
-#endif /* PLUGIN_IR_BE_STA */
-
 #ifdef FIRM_GRGEN_BE
        be_init_pbqp();
 #endif