diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-17 22:40:32 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-17 22:40:32 +0000 |
commit | 5f3f00109e738db0b6da8ea6b0e242bce944420d (patch) | |
tree | b4e313ee5aef2ba124bf4a22afc2b003099d78c8 /gcc/cpplib.h | |
parent | a8abe560b1aa6d0f0c0f3ab3a6ac801fde9d5b1a (diff) | |
download | gcc-5f3f00109e738db0b6da8ea6b0e242bce944420d.tar.gz |
* cpplib.h (struct cpp_reader): Remove references to string_pool
and temp_string_pool.
* cppinit.c (cpp_create_reader, cpp_cleanup): Similarly; using
ident_pool in place.
* cpplex.c (parse_number, unescaped_terminator_p, parse_string,
save_comment, cpp_token_as_text): Similarly.
* cpplib.c (do_define, glue_header_name, parse_assertion): Similarly.
* cppmacro.c (make_number_token, builtin_macro, lock_pools,
unlock_pools, stringify_arg, paste_tokens): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 4c4b7e3a320..32ebb747db2 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -512,10 +512,8 @@ struct cpp_reader /* Memory pools. */ cpp_pool ident_pool; /* For all identifiers, and permanent numbers and strings. */ - cpp_pool temp_string_pool; /* For temporary numbers and strings. */ cpp_pool macro_pool; /* For macro definitions. Permanent. */ cpp_pool argument_pool; /* For macro arguments. Temporary. */ - cpp_pool* string_pool; /* Either temp_string_pool or ident_pool. */ /* Context stack. */ struct cpp_context base_context; |