Author: David Schneider <[email protected]> Branch: arm-backend-2 Changeset: r48746:efc0bc4d9ef5 Date: 2011-11-04 12:09 +0100 http://bitbucket.org/pypy/pypy/changeset/efc0bc4d9ef5/
Log: add condition codes for unsigned lower and unsigned higher or same diff --git a/pypy/jit/backend/arm/conditions.py b/pypy/jit/backend/arm/conditions.py --- a/pypy/jit/backend/arm/conditions.py +++ b/pypy/jit/backend/arm/conditions.py @@ -1,7 +1,7 @@ EQ = 0x0 NE = 0x1 -CS = 0x2 -CC = 0x3 +HS = CS = 0x2 +LO = CC = 0x3 MI = 0x4 PL = 0x5 VS = 0x6 _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
