aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2011-06-10 20:45:52 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2011-06-10 18:45:52 +0000
commitfb37c1de6967ec40db33ac86b8196fc187c38afb (patch)
tree634861dab9c077b5da5ba8e8863e1ea2c9615185 /gcc/opts.c
parente44eb8ff70ccac139cb8c5c74532c2102ec07032 (diff)
downloadgcc-fb37c1de6967ec40db33ac86b8196fc187c38afb.zip
gcc-fb37c1de6967ec40db33ac86b8196fc187c38afb.tar.gz
gcc-fb37c1de6967ec40db33ac86b8196fc187c38afb.tar.bz2
opts.c (default_options): Enlist OPT_finline_functions_called_once.
* 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
Diffstat (limited to 'gcc/opts.c')
-rw-r--r--gcc/opts.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index f735557..712425e 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -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 },