diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-26 17:52:50 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-26 17:52:50 +0000 |
commit | 06c92cbc412348d781face036e144c36d0f73fc5 (patch) | |
tree | c6066a336fb26cdd94d5e883ad2dbefc8c99c02d /gcc/cpplib.h | |
parent | 8f3e702b4f5e481efd9da3287688988be46262de (diff) | |
download | ppe42-gcc-06c92cbc412348d781face036e144c36d0f73fc5.tar.gz ppe42-gcc-06c92cbc412348d781face036e144c36d0f73fc5.zip |
* cpphash.h (struct _cpp_buff, _cpp_get_buff, _cpp_release_buff,
_cpp_extend_buff, _cpp_free_buff): New.
(struct cpp_reader): New member free_buffs.
* cppinit.c (cpp_destroy): Free buffers.
* cpplex.c (new_buff, _cpp_release_buff, _cpp_get_buff,
_cpp_extend_buff, _cpp_free_buff): New.
* cpplib.h (struct cpp_options): Remove unused member.
* cppmacro.c (collect_args): New. Combines the old parse_arg
and parse_args. Use _cpp_buff for memory allocation.
(funlike_invocation_p, replace_args): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45827 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index b8db3663794..5dc6828bf6a 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -236,9 +236,6 @@ struct cpp_options /* The language we're preprocessing. */ enum c_lang lang; - /* Nonzero means to return spacing characters for stand-alone CPP. */ - unsigned char spacing; - /* Non-0 means -v, so print the full set of include dirs. */ unsigned char verbose; |