This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH,picochip] Removed profiling support in picochip
- From: Paolo Bonzini <bonzini at gnu dot org>
- To: Hariharan <hariharans at picochip dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Mon, 16 Mar 2009 16:27:58 +0100
- Subject: Re: [PATCH,picochip] Removed profiling support in picochip
- References: <49BE6A40.8020705@picochip.com>
Hariharan wrote:
> Hi,
> Further to my discussions at
> http://gcc.gnu.org/ml/gcc/2009-01/msg00111.html, it doesnt make sense to
> keep profiling support in picochip port anymore. This change (commited)
> removes profiling support.
Just add something like
flag_profile_values = 0;
flag_unroll_loops = 0;
flag_peel_loops = 0;
flag_tracer = 0;
flag_value_profile_transformations = 0;
flag_inline_functions = 0;
flag_ipa_cp = 0;
flag_ipa_cp_clone = 0;
flag_predictive_commoning = 0;
flag_unswitch_loops = 0;
flag_gcse_after_reload = 0;
to your target's OPTIMIZATION_OPTIONS instead.
Paolo