]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
opts.c (OPT_fif_conversion, [...]): Disable for Og.
authorJoey Ye <joey.ye@arm.com>
Thu, 17 Apr 2014 07:09:56 +0000 (07:09 +0000)
committerJoey Ye <jye2@gcc.gnu.org>
Thu, 17 Apr 2014 07:09:56 +0000 (07:09 +0000)
2014-04-17  Joey Ye  <joey.ye@arm.com>

        * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.

From-SVN: r209463

gcc/ChangeLog
gcc/opts.c

index 953658f4b38e2b56be31934074b662ffe648f55d..9583562a81af0c7f1c0480551a36ab7e0e5428a8 100644 (file)
@@ -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
index 27b32d60a3f15eada7fa97177ffd42a15dbf6dbf..1873b96a028d7326540b48ac9829a28ed58e7c24 100644 (file)
@@ -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 },