aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@waitaki.otago.ac.nz>2001-11-28 00:45:26 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2001-11-28 00:45:26 +0000
commit215e11524b766abfb266cbce99be3a5a175a4c4e (patch)
tree1a8b56111c60d6db40aa318ec5c6e561dc052d61 /gcc/doc
parent7145a3ddd9a4db0d8761b324f19c5dea1cb27500 (diff)
downloadgcc-215e11524b766abfb266cbce99be3a5a175a4c4e.zip
gcc-215e11524b766abfb266cbce99be3a5a175a4c4e.tar.gz
gcc-215e11524b766abfb266cbce99be3a5a175a4c4e.tar.bz2
passes.texi: Remove reference to c-dump.c.
* doc/passes.texi: Remove reference to c-dump.c. Update tree inlining doc. From-SVN: r47392
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/passes.texi6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/doc/passes.texi b/gcc/doc/passes.texi
index 51dab87..4b5c7d7 100644
--- a/gcc/doc/passes.texi
+++ b/gcc/doc/passes.texi
@@ -112,7 +112,6 @@ Certain C-specific files are used for this as well.
The files
@file{c-common.c},
@file{c-common.def},
-@file{c-dump.c},
@file{c-format.c},
@file{c-pragma.c},
@file{c-semantics.c},
@@ -135,11 +134,10 @@ representation, before converting into RTL code.
@cindex inline on trees, automatic
Currently, the main optimization performed here is tree-based
inlining.
-This is implemented for C++ in @file{cp/optimize.c}. Note that
-tree based inlining turns off rtx based inlining (since it's more
+This is implemented in @file{tree-inline.c} and used by both C and C++.
+Note that tree based inlining turns off rtx based inlining (since it's more
powerful, it would be a waste of time to do rtx based inlining in
addition).
-The C front end currently does not perform tree based inlining.
@cindex constant folding
@cindex arithmetic simplifications