diff options
author | Joey Ye <joey.ye@arm.com> | 2014-04-17 07:09:56 +0000 |
---|---|---|
committer | Joey Ye <jye2@gcc.gnu.org> | 2014-04-17 07:09:56 +0000 |
commit | eeee227783eef6389d45f293514f47e293637b68 (patch) | |
tree | 7f4820e1e0b828092ed657df8308f42497de4697 /gcc | |
parent | 1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1 (diff) | |
download | gcc-eeee227783eef6389d45f293514f47e293637b68.zip gcc-eeee227783eef6389d45f293514f47e293637b68.tar.gz gcc-eeee227783eef6389d45f293514f47e293637b68.tar.bz2 |
opts.c (OPT_fif_conversion, [...]): Disable for Og.
2014-04-17 Joey Ye <joey.ye@arm.com>
* opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.
From-SVN: r209463
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/opts.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 953658f..9583562 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-04-17 Joey Ye <joey.ye@arm.com> + + * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og. + 2014-04-16 Jan Hubicka <hubicka@ucw.cz> * opts.c (common_handle_option): Disable -fipa-reference coorectly @@ -431,8 +431,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 }, |