[pypy-commit] pypy default: Add the operation here too. (Fixes a few tests)

arigo noreply at buildbot.pypy.org
Thu Jul 26 09:51:11 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r56456:54daa0856fea
Date: 2012-07-26 09:50 +0200
http://bitbucket.org/pypy/pypy/changeset/54daa0856fea/

Log:	Add the operation here too. (Fixes a few tests)

diff --git a/pypy/jit/backend/llgraph/llimpl.py b/pypy/jit/backend/llgraph/llimpl.py
--- a/pypy/jit/backend/llgraph/llimpl.py
+++ b/pypy/jit/backend/llgraph/llimpl.py
@@ -96,6 +96,7 @@
     'int_add_ovf'     : (('int', 'int'), 'int'),
     'int_sub_ovf'     : (('int', 'int'), 'int'),
     'int_mul_ovf'     : (('int', 'int'), 'int'),
+    'int_force_ge_zero':(('int',), 'int'),
     'uint_add'        : (('int', 'int'), 'int'),
     'uint_sub'        : (('int', 'int'), 'int'),
     'uint_mul'        : (('int', 'int'), 'int'),


More information about the pypy-commit mailing list