diff options
author | Neil Booth <neilb@earthling.net> | 2000-05-27 23:27:36 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-05-27 23:27:36 +0000 |
commit | ad265aa4d61d9c7dac95718a1f00c18476c7ee13 (patch) | |
tree | acecb8c48b6de894d3e76d78605c85dc0b014d01 /gcc/cpplib.h | |
parent | d1d9a6bd66d3d9b6cbade5609395fc618fa88f11 (diff) | |
download | gcc-ad265aa4d61d9c7dac95718a1f00c18476c7ee13.zip gcc-ad265aa4d61d9c7dac95718a1f00c18476c7ee13.tar.gz gcc-ad265aa4d61d9c7dac95718a1f00c18476c7ee13.tar.bz2 |
cpplex.c (_cpp_init_toklist): No comment space to initialise.
* cpplex.c (_cpp_init_toklist): No comment space to initialise.
(_cpp_free_toklist): No comment space to free.
(expand_comment_space): Remove.
(save_comment_space): Place the comment in the current token and
not in a separate comment space.
(_cpp_lex_line): Save comments during plain code and #define
directives only.
* cpplib.h (struct _cpp_toklist): Remove comment space.
From-SVN: r34215
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 6ecab52..5af21cb 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -208,11 +208,6 @@ struct cpp_toklist unsigned int line; /* starting line number */ - /* Comment copying. */ - cpp_token *comments; /* comment tokens. */ - unsigned int comments_used; /* comment tokens used. */ - unsigned int comments_cap; /* comment token capacity. */ - /* The handler to call after lexing the rest of this line. -1 for none */ short dirno; |