Bug 672722 - [MIPS] Use unsigned comparison for LIR_leui (r=wmaddox)

--HG--
extra : convert_revision : aa21f56df4d21e27c3b7a9770dfb08f275388751
This commit is contained in:
Steven Johnson 2011-07-20 17:03:45 -07:00
parent 5188be7c9c
commit 8814b013c4

View File

@ -1588,7 +1588,7 @@ namespace nanojit
else
BEQ(AT, ZERO, btarg);
patch = _nIns;
SLT(AT, rb, ra);
SLTU(AT, rb, ra);
break;
case LIR_geui:
if (branchOnFalse)