From: Jason Schroeder Date: Fri, 21 Apr 2000 01:24:17 +0000 (+0000) Subject: jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c52fbf0f79f6e2079687c2bb12542a4e23bffd2f;p=gcc.git jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction. Thu Apr 20 18:20:58 2000 Jason Schroeder * jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction. From-SVN: r33301 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 8d2ba834b24..8b85122414e 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 20 18:20:58 2000 Jason Schroeder + + * jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction. + 2000-04-19 Alexandre Petit-Bianco * parse.y (yyerror): `msg' can be null, don't use it in that case. diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index dfff14e6beb..444e862197b 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -1200,7 +1200,7 @@ DEFUN(disassemble_method, (jcf, byte_ops, len), fprintf (out, " %d", i); \ INT_temp = saw_wide ? IMMEDIATE_s2 : IMMEDIATE_s1; \ saw_wide = 0; \ - fprintf (out, " %d", i) + fprintf (out, " %d", INT_temp) #define SPECIAL_WIDE(OPERAND_TYPE) \ saw_wide = 1;