From c89ee70f205d3e884e3821f1dffd32bee6516aa6 Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Tue, 16 May 2006 15:20:44 +0000 Subject: [PATCH] Set dumping to none as default --- ir/be/bemain.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ir/be/bemain.c b/ir/be/bemain.c index 30a0cc4a8..f817ecbdd 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -75,7 +75,7 @@ static be_options_t be_options = { }; /* dump flags */ -static unsigned dump_flags = 2 * DUMP_FINAL - 1; +static unsigned dump_flags = 0; /* register allocator to use. */ static const be_ra_t *ra = &be_ra_chordal_allocator; @@ -112,9 +112,11 @@ static const lc_opt_enum_const_ptr_items_t ra_items[] = { static const lc_opt_enum_const_ptr_items_t isa_items[] = { { "firm", &firm_isa }, { "ia32", &ia32_isa_if }, +#if 0 { "arm", &arm_isa_if }, { "ppc32", &ppc32_isa_if }, { "mips", &mips_isa_if }, +#endif { NULL, NULL } }; @@ -355,7 +357,7 @@ static void be_main_loop(FILE *file_handle) /* add Keeps for should_be_different constrained nodes */ /* beware: needs schedule due to usage of be_ssa_constr */ assure_constraints(&birg); - dump(DUMP_PREPARED, irg, "-assured", dump_ir_block_graph_sched); + dump(DUMP_SCHED, irg, "-assured", dump_ir_block_graph_sched); /* connect all stack modifying nodes together (see beabi.c) */ be_abi_fix_stack_nodes(birg.abi); -- 2.20.1