This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Java: jcf-dump patch.
- To: egcs-patches at egcs dot cygnus dot com
- Subject: [PATCH] Java: jcf-dump patch.
- From: Alexandre Petit-Bianco <apbianco at cygnus dot com>
- Date: Thu, 20 Apr 2000 18:24:01 -0700
- Reply-to: apbianco at redhat dot com
I'm checking the following patch which fixes the output of jcf-dump
with regard to the `iinc' instruction.
./A
Thu Apr 20 18:20:58 2000 Jason Schroeder <shrode@subnature.com>
* jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction.
Index: jcf-dump.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/java/jcf-dump.c,v
retrieving revision 1.31
diff -u -p -r1.31 jcf-dump.c
--- jcf-dump.c 2000/03/14 05:01:04 1.31
+++ jcf-dump.c 2000/04/21 01:23:06
@@ -1200,7 +1200,7 @@ DEFUN(disassemble_method, (jcf, byte_ops
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;