diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2012-07-01 10:13:00 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-07-01 10:13:00 +0200 |
commit | fbc873ad61e0b3ff0fb17fd80d722e80057db7de (patch) | |
tree | 1d96e3384639447c071134242103ca203cfa373a /gcc | |
parent | 49e3e71be2582aeab44d21801b19f6f27fd7f345 (diff) | |
download | gcc-fbc873ad61e0b3ff0fb17fd80d722e80057db7de.zip gcc-fbc873ad61e0b3ff0fb17fd80d722e80057db7de.tar.gz gcc-fbc873ad61e0b3ff0fb17fd80d722e80057db7de.tar.bz2 |
c-pch.c (c_common_write_pch): Remove unused variables.
* c-pch.c (c_common_write_pch): Remove unused variables.
From-SVN: r189100
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-family/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-family/c-pch.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 297439b..4edb83d 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,7 @@ +2012-07-01 Uros Bizjak <ubizjak@gmail.com> + + * c-pch.c (c_common_write_pch): Remove unused variables. + 2012-06-29 Steven Bosscher <steven@gcc.gnu.org> * cppspec.c: Moved from gcc/ to here. diff --git a/gcc/c-family/c-pch.c b/gcc/c-family/c-pch.c index 0e21946..0a4d4a8 100644 --- a/gcc/c-family/c-pch.c +++ b/gcc/c-family/c-pch.c @@ -169,9 +169,6 @@ pch_init (void) void c_common_write_pch (void) { - char *buf; - long written; - timevar_push (TV_PCH_SAVE); targetm.prepare_pch_save (); |