diff options
author | Richard Guenther <rguenther@suse.de> | 2005-09-01 08:54:40 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2005-09-01 08:54:40 +0000 |
commit | 355866de6545110b8e3e02b6c47447d868235e66 (patch) | |
tree | c2efaa501141cb154f0baf039de17b5444cf03a4 /gcc/common.opt | |
parent | a1340af76f9d389c82a39326c619c859f634aa04 (diff) | |
download | gcc-355866de6545110b8e3e02b6c47447d868235e66.tar.gz |
re PR tree-optimization/15366 ([3.4 only][unit-at-a-time] -fno-inline-functions is ignored for static functions)
2005-09-01 Richard Guenther <rguenther@suse.de>
PR tree-optimization/15366
* common.opt: Add -finline-functions-called-once.
Put -fearly-inlining in alphabetically ordered place.
* doc/invoke.texi: Document new option.
* ipa-inline.c (cgraph_decide_inlining): Honour
flag_inline_functions_called_once.
From-SVN: r103722
Diffstat (limited to 'gcc/common.opt')
-rw-r--r-- | gcc/common.opt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index 04a8ac03a0a..d7a7a2d67be 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -359,6 +359,10 @@ fdump-unnumbered Common Report Var(flag_dump_unnumbered) VarExists Suppress output of instruction numbers and line number notes in debugging dumps +fearly-inlining +Common Report Var(flag_early_inlining) Init(1) +Perform early inlining + feliminate-dwarf2-dups Common Report Var(flag_eliminate_dwarf2_dups) Perform DWARF2 duplicate elimination @@ -480,9 +484,9 @@ finline-functions Common Report Var(flag_inline_functions) Integrate simple functions into their callers -fearly-inlining -Common Report Var(flag_early_inlining) Init(1) -Perform early inlining +finline-functions-called-once +Common Report Var(flag_inline_functions_called_once) Init(1) +Integrate functions called once into their callers finline-limit- Common RejectNegative Joined UInteger |