diff options
author | Andi Kleen <ak@gcc.gnu.org> | 2025-02-18 15:40:28 -0800 |
---|---|---|
committer | Andi Kleen <ak@gcc.gnu.org> | 2025-02-18 15:40:28 -0800 |
commit | 29482d4e536b93037801d08f096ecf7b7a7f23ad (patch) | |
tree | 2570be1ee5e2447ed4dd3f0b61442504889f6949 /gcc | |
parent | fcdcccdbf809f918db354353ce3afd5b299f913c (diff) | |
download | gcc-29482d4e536b93037801d08f096ecf7b7a7f23ad.zip gcc-29482d4e536b93037801d08f096ecf7b7a7f23ad.tar.gz gcc-29482d4e536b93037801d08f096ecf7b7a7f23ad.tar.bz2 |
Fix description of file-cache-lines/file-cache-files params
The file-cache-lines / file-cache-files tunables were documented in the
wrong section. Fix that.
Reported-by: Filip Kastl
Comitted as obvious.
gcc/ChangeLog:
* doc/invoke.texi:
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/doc/invoke.texi | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ca8e468..d0e0ca8 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -13010,16 +13010,6 @@ having large chains of nested wrapper functions. Enabled by default. -@item -ffile-cache-files= -Max number of files in the file cache. -The file cache is used to print source lines in diagnostics and do some -source checks like @option{-Wmisleading-indentation}. - -@item -ffile-cache-files= -Max number of lines to index into file cache. When 0 this is automatically sized. -The file cache is used to print source lines in diagnostics and do some -source checks like @option{-Wmisleading-indentation}. - @opindex fipa-sra @item -fipa-sra Perform interprocedural scalar replacement of aggregates, removal of @@ -15792,6 +15782,16 @@ considered for if-conversion. The compiler will also use other heuristics to decide whether if-conversion is likely to be profitable. +@item file-cache-files +Max number of files in the file cache. +The file cache is used to print source lines in diagnostics and do some +source checks like @option{-Wmisleading-indentation}. + +@item file-cache-files +Max number of lines to index into file cache. When 0 this is automatically sized. +The file cache is used to print source lines in diagnostics and do some +source checks like @option{-Wmisleading-indentation}. + @item max-rtl-if-conversion-predictable-cost RTL if-conversion will try to remove conditional branches around a block and replace them with conditionally executed instructions. These parameters |