# Patch created by krokas
# Date: Mon Jun 26 23:39:41 MSD 2006
# Repository: pnet
# Comments:
# 
#### End of Preamble ####

#### Patch data follows ####
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/./pnet/ChangeLog,v
retrieving revision 1.3330
diff -c -r1.3330 ChangeLog
*** ChangeLog	26 Jun 2006 19:29:49 -0000	1.3330
--- ChangeLog	26 Jun 2006 19:39:25 -0000
***************
*** 1,3 ****
--- 1,9 ----
+ 2006-06-26  Kirill Kononenko  <Kirill.Kononenko@gmail.com>
+ 
+ 	* 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  <ktreichel@web.de>
  
  	* 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
diff -c -r1.11 jitc_branch.c
*** engine/jitc_branch.c	19 Mar 2006 11:29:11 -0000	1.11
--- engine/jitc_branch.c	26 Jun 2006 19:39:27 -0000
***************
*** 155,161 ****
  		{
  			/* Test two unsigned values for less than  or equal */
  			AdjustMixedBinary(coder, 1, value1, value2);
! 			return jit_insn_lt(coder->jitFunction, *value1, *value2);
  		}
  		break;
  	}
--- 155,161 ----
  		{
  			/* Test two unsigned values for less than  or equal */
  			AdjustMixedBinary(coder, 1, value1, value2);
! 			return jit_insn_le(coder->jitFunction, *value1, *value2);
  		}
  		break;
  	}
#### End of Patch data ####
