diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-27 23:27:36 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-27 23:27:36 +0000 |
commit | 154fc8fb78916850ce054ef669e6d36a35b8de7f (patch) | |
tree | acecb8c48b6de894d3e76d78605c85dc0b014d01 /gcc/cpplib.h | |
parent | d2efb5ed26852ca5f51c34fc05058b136277476c (diff) | |
download | gcc-154fc8fb78916850ce054ef669e6d36a35b8de7f.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34215 138bc75d-0d04-0410-961f-82ee72b054a4
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 6ecab526c48..5af21cb677d 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; |