jcf-reader.c (jcf_parse_bootstrap_methods): Add ATTRIBUTE_UNUSED.
authorAndrew Haley <aph@redhat.com>
Wed, 11 Apr 2012 13:21:18 +0000 (13:21 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Wed, 11 Apr 2012 13:21:18 +0000 (13:21 +0000)
2012-04-11  Andrew Haley  <aph@redhat.com>

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

From-SVN: r186319

gcc/java/ChangeLog
gcc/java/jcf-reader.c

index 49db1cb..38fc269 100644 (file)
@@ -1,5 +1,10 @@
 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.
        (BootstrapMethods): New.
        (JCF): Add BootstrapMethods.
index c47436a..8978de2 100644 (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