From: Michael Beck Date: Sun, 2 Apr 2006 11:18:37 +0000 (+0000) Subject: placed register_options() last in the interface X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=59c7bc3bf74dbeea3cc341aaed7d081c53157ca9;p=libfirm placed register_options() last in the interface --- diff --git a/ir/be/ppc32/bearch_ppc32.c b/ir/be/ppc32/bearch_ppc32.c index 1c02ffa49..0840f0425 100644 --- a/ir/be/ppc32/bearch_ppc32.c +++ b/ir/be/ppc32/bearch_ppc32.c @@ -853,9 +853,6 @@ static void ppc32_register_options(lc_opt_entry_t *ent) #endif /* WITH_LIBCORE */ const arch_isa_if_t ppc32_isa_if = { -#ifdef WITH_LIBCORE - ppc32_register_options, -#endif ppc32_init, ppc32_done, ppc32_get_n_reg_class, @@ -865,5 +862,8 @@ const arch_isa_if_t ppc32_isa_if = { ppc32_get_irn_handler, ppc32_get_code_generator_if, ppc32_get_list_sched_selector, - ppc32_get_reg_class_alignment + ppc32_get_reg_class_alignment, +#ifdef WITH_LIBCORE + ppc32_register_options +#endif };