diff options
author | Martin Liska <mliska@suse.cz> | 2014-10-06 13:51:09 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2014-10-06 11:51:09 +0000 |
commit | 70261a4fb12323f240ca68669f3ec97caecb4a05 (patch) | |
tree | b228339ef3cdd25c59b2311d38014f4ae5ec2d06 /gcc | |
parent | 8ece1ab347d8132732173a001a2bb8df1770de14 (diff) | |
download | gcc-70261a4fb12323f240ca68669f3ec97caecb4a05.zip gcc-70261a4fb12323f240ca68669f3ec97caecb4a05.tar.gz gcc-70261a4fb12323f240ca68669f3ec97caecb4a05.tar.bz2 |
lto.c (stream_out): ARG_UNUSED added for last argument.
* lto.c (stream_out): ARG_UNUSED added for last argument.
From-SVN: r215926
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/lto/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/lto/lto.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index f1e25db..fba61ef 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,7 @@ +2014-10-06 Martin Liska <mliska@suse.cz> + + * lto.c (stream_out): ARG_UNUSED added for last argument. + 2014-09-24 Aldy Hernandez <aldyh@redhat.com> * lto-symtab.c, lto.c: Rename all instances of DECL_ABSTRACT to diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 6cbb178..bc53632 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -2495,7 +2495,8 @@ wait_for_child () Fork if that seems to help. */ static void -stream_out (char *temp_filename, lto_symtab_encoder_t encoder, bool last) +stream_out (char *temp_filename, lto_symtab_encoder_t encoder, + bool ARG_UNUSED (last)) { #ifdef HAVE_WORKING_FORK static int nruns; |