X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbemodule.c;h=01435383f25b8691d4bfe065d4ea7b695ba0db04;hb=c1fdf770d4d000dd5cf22daead32369342c5f5d1;hp=c8c2116a2758e96ec9eedc29fdc2a904ce83c081;hpb=574ca753de816b23d1a669d03eee9d9f88282d22;p=libfirm diff --git a/ir/be/bemodule.c b/ir/be/bemodule.c index c8c2116a2..01435383f 100644 --- a/ir/be/bemodule.c +++ b/ir/be/bemodule.c @@ -24,9 +24,9 @@ * @date 29.09.2005 * @version $Id$ */ -#include - -#include "firm_config.h" +#ifndef HAVE_CONFIG_H +#include "config.h" +#endif #include @@ -43,7 +43,6 @@ void be_init_chordal(void); void be_init_chordal_main(void); void be_init_copycoal(void); void be_init_copyheur2(void); -void be_init_copyheur3(void); void be_init_copyheur4(void); void be_init_copyheur5(void); void be_init_copystat(void); @@ -57,7 +56,6 @@ void be_init_arch_sta(void); void be_init_arch_TEMPLATE(void); void be_init_ilpsched(void); void be_init_copyilp(void); -void be_init_javacoal(void); void be_init_peephole(void); void be_init_ra(void); void be_init_spillbelady(void); @@ -130,11 +128,6 @@ void be_init_modules(void) be_init_copyilp(); #endif /* WITH_ILP */ -#ifdef WITH_JVM - be_init_copyheur3(); - be_init_javacoal(); -#endif /* WITH_JVM */ - #if PLUGIN_IR_BE_STA be_init_arch_sta(); #endif /* PLUGIN_IR_BE_STA */ @@ -250,9 +243,7 @@ int dump_opt_module_vals(char *buf, size_t buflen, const char *name, void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name, void *module) { - be_module_list_entry_t *entry; - - entry = xmalloc(sizeof(entry[0])); + be_module_list_entry_t *entry = XMALLOC(be_module_list_entry_t); entry->name = name; entry->data = module; entry->next = *list_head; @@ -267,9 +258,7 @@ void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name, be_module_list_entry_t * const * list_head, void **var) { - module_opt_data_t *moddata; - - moddata = xmalloc(sizeof(moddata[0])); + module_opt_data_t *moddata = XMALLOC(module_opt_data_t); moddata->var = var; moddata->list_head = list_head;