dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/ildasm ildasm_method.c,1.9,1.10


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/ildasm ildasm_method.c,1.9,1.10
Date: Wed, 27 Nov 2002 18:30:44 -0500

Update of /cvsroot/dotgnu-pnet/pnet/ildasm
In directory subversions:/tmp/cvs-serv940/ildasm

Modified Files:
        ildasm_method.c 
Log Message:


Bug in the dumping of "ldc.i8" arguments, which caused the words to be
reversed in the output.


Index: ildasm_method.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ildasm/ildasm_method.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** ildasm_method.c     16 Sep 2002 02:05:54 -0000      1.9
--- ildasm_method.c     27 Nov 2002 23:30:42 -0000      1.10
***************
*** 553,558 ****
                        {
                                fprintf(outstream, "0x%08lx%08lX",
!                                       (unsigned long)(IL_READ_UINT32(temp + 
args)),
!                                               (unsigned 
long)(IL_READ_UINT32(temp + args + 4)));
                        }
                        break;
--- 553,558 ----
                        {
                                fprintf(outstream, "0x%08lx%08lX",
!                                       (unsigned long)(IL_READ_UINT32(temp + 
args + 4)),
!                                               (unsigned 
long)(IL_READ_UINT32(temp + args)));
                        }
                        break;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]