diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-08 15:08:07 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-08 15:08:07 +0000 |
commit | fb9d65e984c9f0195ae5670cacf2faf16947d982 (patch) | |
tree | 1ef5bc80d05828ef29d37879a9db4612169e8f76 /gcc/doc/cppinternals.texi | |
parent | ec85a7d9dde1f336c36f3cdb0ba1889d307d7715 (diff) | |
download | gcc-fb9d65e984c9f0195ae5670cacf2faf16947d982.tar.gz |
2005-02-08 Paolo Bonzini <bonzini@gnu.org>
PR preprocessor/19801
* doc/cppinternals.texi (Conventions, Lexer, Files): Adjust
filenames that changed when libcpp was moved to the toplevel.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94737 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/cppinternals.texi')
-rw-r--r-- | gcc/doc/cppinternals.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/cppinternals.texi b/gcc/doc/cppinternals.texi index dc34eec1e6a..b5ee7844d2d 100644 --- a/gcc/doc/cppinternals.texi +++ b/gcc/doc/cppinternals.texi @@ -112,7 +112,7 @@ other is for both internal and external use. The convention is that functions and types that are exposed to multiple files internally are prefixed with @samp{_cpp_}, and are to be found in -the file @file{cpphash.h}. Functions and types exposed to external +the file @file{internal.h}. Functions and types exposed to external clients are in @file{cpplib.h}, and prefixed with @samp{cpp_}. For historical reasons this is no longer quite true, but we should strive to stick to it. @@ -131,7 +131,7 @@ behavior. @cindex escaped newlines @section Overview -The lexer is contained in the file @file{cpplex.c}. It is a hand-coded +The lexer is contained in the file @file{lex.c}. It is a hand-coded lexer, and not implemented as a state machine. It can understand C, C++ and Objective-C source code, and has been extended to allow reasonably successful preprocessing of assembly language. The lexer does not make @@ -996,7 +996,7 @@ is turned off. @cindex files Fairly obviously, the file handling code of cpplib resides in the file -@file{cppfiles.c}. It takes care of the details of file searching, +@file{files.c}. It takes care of the details of file searching, opening, reading and caching, for both the main source file and all the headers it recursively includes. |