From 59c7bc3bf74dbeea3cc341aaed7d081c53157ca9 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 2 Apr 2006 11:18:37 +0000 Subject: [PATCH] placed register_options() last in the interface --- ir/be/ppc32/bearch_ppc32.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }; -- 2.20.1