diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-05-11 23:48:21 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-05-11 23:48:21 +0000 |
commit | c8a96070172673d05574e3c9fe21e28750610223 (patch) | |
tree | eefc97fe7077fa7f6cfc9bb868638feb3419f0dd /gcc/cppinternals.texi | |
parent | f42974dc81a20a5ea306fab56faef8c322bf26d2 (diff) | |
download | gcc-c8a96070172673d05574e3c9fe21e28750610223.zip gcc-c8a96070172673d05574e3c9fe21e28750610223.tar.gz gcc-c8a96070172673d05574e3c9fe21e28750610223.tar.bz2 |
c-lex.c (lex_charconst): Convert into a simple wrapper around cpp_interpret_charconst...
* c-lex.c (lex_charconst): Convert into a simple wrapper
around cpp_interpret_charconst, to which most of the code
body is moved.
* cppexp.c (MAX_CHAR_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE,
MAX_LONG_TYPE_SIZE, MAX_INT_TYPE_SIZE, MAX_CHAR_TYPE_MASK,
MAX_WCHAR_TYPE_MASK, parse_escape, parse_charconst): Remove.
(lex): Use cpp_interpret_charconst.
* cpplex.c (parse_escape, read_ucs, cpp_interpret_charconst,
hex_digit_value): New functions.
(MAX_CHAR_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): New macros.
* cpplib.h (cpp_interpret_charconst): New prototype.
* Makefile.in: Update.
From-SVN: r41978
Diffstat (limited to 'gcc/cppinternals.texi')
-rw-r--r-- | gcc/cppinternals.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppinternals.texi b/gcc/cppinternals.texi index c60a9a8..2a038cb 100644 --- a/gcc/cppinternals.texi +++ b/gcc/cppinternals.texi @@ -391,7 +391,7 @@ macro is defined when we leave the header file for the first time. If the host supports it, we try to map suitably large files into memory, rather than reading them in directly. -The include paths are intenally stored on a null-terminated +The include paths are internally stored on a null-terminated singly-linked list, starting with the @code{"header.h"} directory search chain, which then links into the @code{<header.h>} directory chain. |