jcf-reader.c (jcf_parse_bootstrap_methods): Add ATTRIBUTE_UNUSED.

2012-04-11  Andrew Haley  <aph@redhat.com>

	* jcf-reader.c (jcf_parse_bootstrap_methods): Add
	ATTRIBUTE_UNUSED.

From-SVN: r186319
This commit is contained in:
Andrew Haley 2012-04-11 13:21:18 +00:00 committed by Andrew Haley
parent 60fa39313e
commit e9184c9ece
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-11 Andrew Haley <aph@redhat.com>
* jcf-reader.c (jcf_parse_bootstrap_methods): Add
ATTRIBUTE_UNUSED.
2012-04-11 Andrew Haley <aph@redhat.com>
* jcf.h (bootstrap_method): New.

View File

@ -36,7 +36,7 @@ static int jcf_parse_fields (JCF *);
static int jcf_parse_one_method (JCF *, int);
static int jcf_parse_methods (JCF *);
static int jcf_parse_final_attributes (JCF *);
static int jcf_parse_bootstrap_methods (JCF *, int );
static int jcf_parse_bootstrap_methods (JCF *, int) ATTRIBUTE_UNUSED;
#ifdef NEED_PEEK_ATTRIBUTE
static int peek_attribute (JCF *, int, const char *, int);
#endif