aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.h
diff options
context:
space:
mode:
authorNeil Booth <neilb@earthling.net>2000-05-27 23:27:36 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-05-27 23:27:36 +0000
commitad265aa4d61d9c7dac95718a1f00c18476c7ee13 (patch)
treeacecb8c48b6de894d3e76d78605c85dc0b014d01 /gcc/cpplib.h
parentd1d9a6bd66d3d9b6cbade5609395fc618fa88f11 (diff)
downloadgcc-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.h5
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;