sta is not there by default
authorMatthias Braun <matze@braunis.de>
Thu, 11 Jan 2007 13:36:36 +0000 (13:36 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 11 Jan 2007 13:36:36 +0000 (13:36 +0000)
ir/be/bemodule.c

index c37d6af..31dc9d5 100644 (file)
@@ -35,6 +35,7 @@ void be_init_ra(void);
 void be_init_spillbelady(void);
 void be_init_spillmorgan(void);
 void be_init_spillremat(void);
+void be_init_ifg(void);
 
 void be_quit_copystat(void);
 
@@ -59,6 +60,7 @@ void be_init_modules(void)
        be_init_ra();
        be_init_spillbelady();
        be_init_spillmorgan();
+       be_init_ifg();
 
        be_init_arch_ia32();
        be_init_arch_ppc32();
@@ -75,6 +77,10 @@ void be_init_modules(void)
 #ifdef WITH_JVM
        be_init_javacoal();
 #endif
+
+#ifdef WITH_STA
+       be_init_arch_sta();
+#endif
 }
 
 void be_quit_modules(void)