From: Christian Würdig Date: Wed, 15 Nov 2006 11:57:28 +0000 (+0000) Subject: added sta backend (but commented out) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4563d7e7eccae5d0b2ce38fde1f9db7366c728f5;p=libfirm added sta backend (but commented out) register ilpsched options --- diff --git a/ir/be/bemain.c b/ir/be/bemain.c index af35a3206..ed7592435 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -42,6 +42,7 @@ #include "arm/bearch_arm.h" #include "ppc32/bearch_ppc32.h" #include "mips/bearch_mips.h" +// #include "sta/bearch_sta.h" #include "be_t.h" #include "benumb_t.h" @@ -124,6 +125,7 @@ static const lc_opt_enum_const_ptr_items_t ra_items[] = { static const lc_opt_enum_const_ptr_items_t isa_items[] = { { "ia32", &ia32_isa_if }, #if 0 + { "sta", &sta_isa_if }, { "arm", &arm_isa_if }, { "ppc32", &ppc32_isa_if }, { "mips", &mips_isa_if }, @@ -216,9 +218,14 @@ void be_opt_register(void) isa->register_options(be_grp_root); } - /* scheduler register options */ + /* list scheduler register options */ list_sched_register_options(be_grp_root); +#ifdef WITH_ILP + /* ilp scheduler register options */ + ilpsched_register_options(be_grp_root); +#endif /* WITH_ILP */ + be_block_schedule_register_options(be_grp_root); } #endif /* WITH_LIBCORE */