Commit 646544e3 by Andrew Pinski Committed by Andrew Pinski

pch.c (cpp_write_pch_state): Remove variable z as it is not used.

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.

From-SVN: r88748
parent 07ea92d3
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.
2004-09-29 Per Bothner <per@bothner.com> 2004-09-29 Per Bothner <per@bothner.com>
* directives.c (cpp_handle_deferred_pragma): Save, clear and restore * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
......
...@@ -345,8 +345,6 @@ cpp_write_pch_deps (cpp_reader *r, FILE *f) ...@@ -345,8 +345,6 @@ cpp_write_pch_deps (cpp_reader *r, FILE *f)
int int
cpp_write_pch_state (cpp_reader *r, FILE *f) cpp_write_pch_state (cpp_reader *r, FILE *f)
{ {
struct macrodef_struct z;
if (!r->deps) if (!r->deps)
r->deps = deps_init (); r->deps = deps_init ();
...@@ -630,9 +628,7 @@ int ...@@ -630,9 +628,7 @@ int
cpp_read_state (cpp_reader *r, const char *name, FILE *f, cpp_read_state (cpp_reader *r, const char *name, FILE *f,
struct save_macro_data *data) struct save_macro_data *data)
{ {
struct macrodef_struct m; size_t i;
struct save_macro_item *d;
size_t i, mac_count;
struct lexer_state old_state; struct lexer_state old_state;
/* Restore spec_nodes, which will be full of references to the old /* Restore spec_nodes, which will be full of references to the old
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment