CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnet
Changes by:     Klaus Treichel <ktreichel>      07/12/26 15:35:10

Modified files:
        .              : ChangeLog 
        engine         : jitc.c 

Log message:
        Fix a bug when checking for pointer types in AdjustMixedBinary.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3528&r2=1.3529
http://cvs.savannah.gnu.org/viewcvs/pnet/engine/jitc.c?cvsroot=dotgnu-pnet&r1=1.78&r2=1.79

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3528
retrieving revision 1.3529
diff -u -b -r1.3528 -r1.3529
--- ChangeLog   20 Dec 2007 13:29:28 -0000      1.3528
+++ ChangeLog   26 Dec 2007 15:35:09 -0000      1.3529
@@ -1,3 +1,8 @@
+2007-12-26  Klaus Treichel  <[EMAIL PROTECTED]>
+
+       * engine/jitc.c: Fix a bug in AdjustMixedBinary when checking for 
pointer
+       types.
+
 2007-12-20  Radek Polak  <[EMAIL PROTECTED]>
 
        * engine/debugger.c: Fix connection shutdown. Now it terminates

Index: engine/jitc.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/engine/jitc.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -b -r1.78 -r1.79
--- engine/jitc.c       11 Dec 2007 20:27:43 -0000      1.78
+++ engine/jitc.c       26 Dec 2007 15:35:10 -0000      1.79
@@ -1239,7 +1239,7 @@
                        newType = _IL_JIT_TYPE_INT64;
                }
        }
-       else if(!type1IsPointer || type2IsPointer)
+       else if(type1IsPointer || type2IsPointer)
        {
                if(isUnsigned)
                {


_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits

Reply via email to