diff options
author | Ian Lance Taylor <iant@google.com> | 2013-10-23 13:28:11 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-10-23 13:28:11 +0000 |
commit | c9edbc5fa1c3812f834a625afae0b09c652dc1fa (patch) | |
tree | 605abbe3d8dde3d81feab1e36af4c1fdcbee541b | |
parent | a63b68b2f2ca3b7452550b8eeafab8fe4dbdccd8 (diff) | |
download | gcc-c9edbc5fa1c3812f834a625afae0b09c652dc1fa.zip gcc-c9edbc5fa1c3812f834a625afae0b09c652dc1fa.tar.gz gcc-c9edbc5fa1c3812f834a625afae0b09c652dc1fa.tar.bz2 |
invoke.texi (Option Summary): Remove -fno-default-inline.
* doc/invoke.texi (Option Summary): Remove -fno-default-inline.
(C++ Dialect Options): Likewise.
(Optimize Options): Likewise.
From-SVN: r203974
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 18 |
2 files changed, 7 insertions, 17 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0170761..6132515 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-10-23 Ian Lance Taylor <iant@google.com> + + * doc/invoke.texi (Option Summary): Remove -fno-default-inline. + (C++ Dialect Options): Likewise. + (Optimize Options): Likewise. + 2013-10-23 Tom de Vries <tom@codesourcery.com> PR tree-optimization/58805 diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 46a2b18..e1303bf 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -190,7 +190,7 @@ in the following sections. -frepo -fno-rtti -fstats -ftemplate-backtrace-limit=@var{n} @gol -ftemplate-depth=@var{n} @gol -fno-threadsafe-statics -fuse-cxa-atexit -fno-weak -nostdinc++ @gol --fno-default-inline -fvisibility-inlines-hidden @gol +-fvisibility-inlines-hidden @gol -fvtable-verify=@var{std|preinit|none} @gol -fvtv-counts -fvtv-debug @gol -fvisibility-ms-compat @gol @@ -385,7 +385,6 @@ Objective-C and Objective-C++ Dialects}. -flto-partition=@var{alg} -flto-report -flto-report-wpa -fmerge-all-constants @gol -fmerge-constants -fmodulo-sched -fmodulo-sched-allow-regmoves @gol -fmove-loop-invariants fmudflap -fmudflapir -fmudflapth -fno-branch-count-reg @gol --fno-default-inline @gol -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol @@ -2403,13 +2402,6 @@ In addition, these optimization, warning, and code generation options have meanings only for C++ programs: @table @gcctabopt -@item -fno-default-inline -@opindex fno-default-inline -Do not assume @samp{inline} for functions defined inside a class scope. -@xref{Optimize Options,,Options That Control Optimization}. Note that these -functions have linkage like inline functions; they just aren't -inlined by default. - @item -Wabi @r{(C, Objective-C, C++ and Objective-C++ only)} @opindex Wabi @opindex Wno-abi @@ -6828,14 +6820,6 @@ can use the following flags in the rare cases when ``fine-tuning'' of optimizations to be performed is desired. @table @gcctabopt -@item -fno-default-inline -@opindex fno-default-inline -Do not make member functions inline by default merely because they are -defined inside the class scope (C++ only). Otherwise, when you specify -@w{@option{-O}}, member functions defined inside class scope are compiled -inline by default; i.e., you don't need to add @samp{inline} in front of -the member function name. - @item -fno-defer-pop @opindex fno-defer-pop Always pop the arguments to each function call as soon as that function |