From: Joey Ye Date: Sun, 4 May 2014 07:05:29 +0000 (+0000) Subject: backport: opts.c (OPT_fif_conversion, [...]): Disable for Og. X-Git-Tag: releases/gcc-4.8.3~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a92099f4dcefbe49b1eaab24c7c321a6aef67f9a;p=thirdparty%2Fgcc.git backport: opts.c (OPT_fif_conversion, [...]): Disable for Og. 2014-05-03 Joey Ye Backport from mainline r209463 2014-04-17 Joey Ye * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og. From-SVN: r210048 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fafed2afb370..e548d548799f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2014-05-03 Joey Ye + + Backport from mainline r209463 + 2014-04-17 Joey Ye + + * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og. + 2014-05-03 Oleg Endo Back port from mainline diff --git a/gcc/opts.c b/gcc/opts.c index 45b12fecb8e4..55cd965282d5 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -425,8 +425,8 @@ static const struct default_options default_options_table[] = { OPT_LEVELS_1_PLUS, OPT_fguess_branch_probability, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fcprop_registers, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fforward_propagate, NULL, 1 }, - { OPT_LEVELS_1_PLUS, OPT_fif_conversion, NULL, 1 }, - { OPT_LEVELS_1_PLUS, OPT_fif_conversion2, NULL, 1 }, + { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion, NULL, 1 }, + { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion2, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fipa_pure_const, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fipa_reference, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fipa_profile, NULL, 1 },