diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/doc/passes.texi | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23ff608..a6d1082 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-11-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz> + + * doc/passes.texi: Remove reference to c-dump.c. Update tree inlining + doc. + 2001-11-27 Jakub Jelinek <jakub@redhat.com> * gcc.c (ASM_DEBUG_SPEC): Use conditional expression rather than 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 |
