diff options
author | Kaveh R. Ghazi <ghazi@snafu.rutgers.edu> | 1999-05-12 17:04:30 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-05-12 17:04:30 +0000 |
commit | b4b63e32e6e0d8b8d499faf44c8de91231d26ec8 (patch) | |
tree | 70715ebcac70670659d707679cdd0ba84cbf5d91 /gcc/java/jcf-io.c | |
parent | 34ba56fa810df1980ccdfcf300cd7ab620d34b90 (diff) | |
download | gcc-b4b63e32e6e0d8b8d499faf44c8de91231d26ec8.zip gcc-b4b63e32e6e0d8b8d499faf44c8de91231d26ec8.tar.gz gcc-b4b63e32e6e0d8b8d499faf44c8de91231d26ec8.tar.bz2 |
expr.c (expand_invoke): Mark parameter `nargs' with ATTRIBUTE_UNUSED.
* expr.c (expand_invoke): Mark parameter `nargs' with
ATTRIBUTE_UNUSED.
(PRE_LOOKUP_SWITCH): Likewise for variable `match'.
* jcf-io.c (jcf_unexpected_eof): Mark parameter `count' with
ATTRIBUTE_UNUSED.
* jcf-reader.c (get_attribute): Cast a value to long
when comparing against a signed expression. Likewise.
From-SVN: r26907
Diffstat (limited to 'gcc/java/jcf-io.c')
-rw-r--r-- | gcc/java/jcf-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-io.c b/gcc/java/jcf-io.c index e4d614d..9533218 100644 --- a/gcc/java/jcf-io.c +++ b/gcc/java/jcf-io.c @@ -36,7 +36,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ int DEFUN(jcf_unexpected_eof, (jcf, count), - JCF *jcf AND int count) + JCF *jcf AND int count ATTRIBUTE_UNUSED) { if (jcf->filename) fprintf (stderr, "Premature end of .class file %s.\n", jcf->filename); |