From: Christoph Mallon Date: Sat, 17 Nov 2007 08:51:46 +0000 (+0000) Subject: Do not set options which do not exist anymore. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e0a47bc61e0395c8c45514a5e6776575a3ab0d75;p=cparser Do not set options which do not exist anymore. [r18434] --- diff --git a/main.c b/main.c index d0cfcf9..acd2f48 100644 --- a/main.c +++ b/main.c @@ -65,19 +65,11 @@ static void initialize_firm(void) set_opt_control_flow_straightening(1); set_opt_control_flow_weak_simplification(1); set_opt_control_flow_strong_simplification(1); - set_opt_dead_node_elimination(1); - set_opt_reassociation(1); - set_opt_inline(1); set_opt_dyn_meth_dispatch(1); set_opt_normalize(1); - set_opt_tail_recursion(1); - set_opt_dead_method_elimination(1); set_opt_precise_exc_context(0); - set_opt_loop_unrolling(0); set_opt_strength_red(0); - set_opt_redundant_loadstore(1); set_opt_fragile_ops(0); - set_opt_function_call(1); set_opt_optimize_class_casts(0); set_opt_suppress_downcast_optimization(0); set_opt_remove_confirm(1);