diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-14 05:43:13 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-14 05:43:13 +0000 |
commit | 9a468a1b28b8ee826d8196117edd2652ed806c43 (patch) | |
tree | 04cbdfa09f14486aae7d7a354d10fe7ccbe07768 /gcc/cpphash.h | |
parent | e9bf6953f63139703b659e1ca8c52e4e4681bcbe (diff) | |
download | ppe42-gcc-9a468a1b28b8ee826d8196117edd2652ed806c43.tar.gz ppe42-gcc-9a468a1b28b8ee826d8196117edd2652ed806c43.zip |
* cpphash.h (struct cpp_buffer): Remove saved_line_base.
* cpptrad.c: Update comments.
(skip_whitespace, copy_comment): Take a new parameter.
(skip_escaped_newlines): Don't duplicate escaped newline test.
(copy_comment): Different location for CUR, decide here how
to copy / replace the comment.
(skip_whitespace): Copy whitespace.
(_cpp_overlay_buffer, _cpp_remove_overlay): Don't play with line_base.
(scan_out_logical_line): Let copy comment handle keeping or
replacing comments.
(scan_parameters, _cpp_create_trad_definition): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54605 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 24b5ef7fccc..60340d941e5 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -298,7 +298,7 @@ struct cpp_buffer struct search_path dir; /* Used for buffer overlays by cpptrad.c. */ - const uchar *saved_cur, *saved_rlimit, *saved_line_base; + const uchar *saved_cur, *saved_rlimit; }; /* A cpp_reader encapsulates the "state" of a pre-processor run. |