CVSROOT: /sources/dotgnu-pnet
Module name: pnet
Changes by: Klaus Treichel <ktreichel> 06/06/26 19:59:15
Modified files:
. : ChangeLog
engine : jitc_branch.c
Log message:
2006-06-26 Kirill Kononenko <[EMAIL PROTECTED]>
* engine/jitc_branch.c: Fixed a bug in the JIT_OP_BLE_UN
condition code
in OutputCompare. The bug was causing a fail in make check in
the the
TestConvertToUInt64 testcase.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3330&r2=1.3331
http://cvs.savannah.gnu.org/viewcvs/pnet/engine/jitc_branch.c?cvsroot=dotgnu-pnet&r1=1.11&r2=1.12
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3330
retrieving revision 1.3331
diff -u -b -r1.3330 -r1.3331
--- ChangeLog 26 Jun 2006 19:29:49 -0000 1.3330
+++ ChangeLog 26 Jun 2006 19:59:15 -0000 1.3331
@@ -1,3 +1,9 @@
+2006-06-26 Kirill Kononenko <[EMAIL PROTECTED]>
+
+ * engine/jitc_branch.c: Fixed a bug in the JIT_OP_BLE_UN condition code
+ in OutputCompare. The bug was causing a fail in make check in the the
+ TestConvertToUInt64 testcase.
+
2006-06-26 Klaus Treichel <[EMAIL PROTECTED]>
* engine/jitc_diag.c: Fix _ILJitGetCallingMethod.
Index: engine/jitc_branch.c
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/engine/jitc_branch.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- engine/jitc_branch.c 19 Mar 2006 11:29:11 -0000 1.11
+++ engine/jitc_branch.c 26 Jun 2006 19:59:15 -0000 1.12
@@ -155,7 +155,7 @@
{
/* Test two unsigned values for less than or equal */
AdjustMixedBinary(coder, 1, value1, value2);
- return jit_insn_lt(coder->jitFunction, *value1,
*value2);
+ return jit_insn_le(coder->jitFunction, *value1,
*value2);
}
break;
}
_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits