From: Michael Beck Date: Sun, 2 Apr 2006 11:15:55 +0000 (+0000) Subject: placed register_options() last in the interface X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=303dc6373eb85ca2f282980ff8c6fb2193c28e44;p=libfirm placed register_options() last in the interface --- diff --git a/ir/be/mips/bearch_mips.c b/ir/be/mips/bearch_mips.c index 97b54a0c7..b8e3ef629 100644 --- a/ir/be/mips/bearch_mips.c +++ b/ir/be/mips/bearch_mips.c @@ -921,9 +921,6 @@ static void mips_register_options(lc_opt_entry_t *ent) #endif /* WITH_LIBCORE */ const arch_isa_if_t mips_isa_if = { -#ifdef WITH_LIBCORE - mips_register_options, -#endif mips_init, mips_done, mips_get_n_reg_class, @@ -933,5 +930,8 @@ const arch_isa_if_t mips_isa_if = { mips_get_irn_handler, mips_get_code_generator_if, mips_get_list_sched_selector, - mips_get_reg_class_alignment + mips_get_reg_class_alignment, +#ifdef WITH_LIBCORE + mips_register_options +#endif };