aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.h
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2000-12-17 22:40:32 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-12-17 22:40:32 +0000
commit49fe13f6d8cfe7f3450608a4444b2f9a5b04de35 (patch)
treeb4e313ee5aef2ba124bf4a22afc2b003099d78c8 /gcc/cpplib.h
parented972b14ec2ef437ca42b0136fe466aed04fed7a (diff)
downloadgcc-49fe13f6d8cfe7f3450608a4444b2f9a5b04de35.zip
gcc-49fe13f6d8cfe7f3450608a4444b2f9a5b04de35.tar.gz
gcc-49fe13f6d8cfe7f3450608a4444b2f9a5b04de35.tar.bz2
cpplib.h (struct cpp_reader): Remove references to string_pool and temp_string_pool.
* 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. From-SVN: r38336
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r--gcc/cpplib.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h
index 4c4b7e3..32ebb74 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;