aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Ye <joey.ye@arm.com>2014-04-17 07:09:56 +0000
committerJoey Ye <jye2@gcc.gnu.org>2014-04-17 07:09:56 +0000
commiteeee227783eef6389d45f293514f47e293637b68 (patch)
tree7f4820e1e0b828092ed657df8308f42497de4697
parent1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1 (diff)
downloadgcc-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
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/opts.c4
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
diff --git a/gcc/opts.c b/gcc/opts.c
index 27b32d6..1873b96 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -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 },