diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-08 12:50:12 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-08 12:50:12 +0000 |
commit | 09f10c942bbdeee00ded42e7be6cb787bb7d1962 (patch) | |
tree | 12989775753407a64c8b4f4d6228ab5ce0ce9c9d /libcpp/pch.c | |
parent | a6d6d1db4cf997ed6fb555c426c7111b1045644a (diff) | |
download | gcc-09f10c942bbdeee00ded42e7be6cb787bb7d1962.tar.gz |
2004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
* pch.c (cpp_write_pch_state): Remove variable z as it is not
used.
(cpp_read_state): Remove unused variables, m, d and mac_count.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88748 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/pch.c')
-rw-r--r-- | libcpp/pch.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libcpp/pch.c b/libcpp/pch.c index a343cd857f0..292132139d2 100644 --- a/libcpp/pch.c +++ b/libcpp/pch.c @@ -345,8 +345,6 @@ cpp_write_pch_deps (cpp_reader *r, FILE *f) int cpp_write_pch_state (cpp_reader *r, FILE *f) { - struct macrodef_struct z; - if (!r->deps) r->deps = deps_init (); @@ -630,9 +628,7 @@ int cpp_read_state (cpp_reader *r, const char *name, FILE *f, struct save_macro_data *data) { - struct macrodef_struct m; - struct save_macro_item *d; - size_t i, mac_count; + size_t i; struct lexer_state old_state; /* Restore spec_nodes, which will be full of references to the old |