opts.c (default_options): Enlist OPT_finline_functions_called_once.
authorJan Hubicka <jh@suse.cz>
Fri, 10 Jun 2011 18:45:52 +0000 (20:45 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Fri, 10 Jun 2011 18:45:52 +0000 (18:45 +0000)
* opts.c (default_options): Enlist OPT_finline_functions_called_once.
* common.opt (flag_inline_functions_called_once):Do not initialize to 1.

From-SVN: r174924

gcc/ChangeLog
gcc/common.opt
gcc/opts.c

index 935cb145e6c4a3119ff30c20bae9ecc21473eebc..4c204f457dedcc96707d26cfdccda2deb26f3698 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-10  Jan Hubicka  <jh@suse.cz>
+
+       * opts.c (default_options): Enlist OPT_finline_functions_called_once.
+       * common.opt (flag_inline_functions_called_once):Do not initialize to 1.
+
 2011-06-10  Jan Hubicka  <jh@suse.cz>
 
        * ipa-cp.c (ipcp_versionable_function_p): Thunks are not versionable.
index 5a5360785bd9f69dec016a9d1e6ef82fa354dae5..d412f57202008c593cdd9c6baddf1cc20664eab9 100644 (file)
@@ -1233,7 +1233,7 @@ Common Report Var(flag_inline_functions) Optimization
 Integrate simple functions into their callers
 
 finline-functions-called-once
-Common Report Var(flag_inline_functions_called_once) Init(1) Optimization
+Common Report Var(flag_inline_functions_called_once) Optimization
 Integrate functions called once into their callers
 
 finline-limit-
index f7355576928e8c670e1c33c3b1ab6d4e4fc05758..712425eb928ef20e7ab2228a19b5832fcd44846b 100644 (file)
@@ -486,6 +486,7 @@ static const struct default_options default_options_table[] =
     /* Inlining of functions reducing size is a good idea with -Os
        regardless of them being declared inline.  */
     { OPT_LEVELS_3_PLUS_AND_SIZE, OPT_finline_functions, NULL, 1 },
+    { OPT_LEVELS_1_PLUS, OPT_finline_functions_called_once, NULL, 1 },
     { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 },
     { OPT_LEVELS_3_PLUS, OPT_fgcse_after_reload, NULL, 1 },
     { OPT_LEVELS_3_PLUS, OPT_ftree_vectorize, NULL, 1 },