This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH,picochip] Removed profiling support in picochip


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]