[pypy-commit] pypy ootype-rerased: Added opcodes to list.

ademan noreply at buildbot.pypy.org
Mon Jul 18 23:32:58 CEST 2011


Author: Daniel Roberts <Ademan555 at gmail.com>
Branch: ootype-rerased
Changeset: r45725:bdc008c4d87c
Date: 2011-07-18 14:20 -0700
http://bitbucket.org/pypy/pypy/changeset/bdc008c4d87c/

Log:	Added opcodes to list.

diff --git a/pypy/translator/jvm/opcodes.py b/pypy/translator/jvm/opcodes.py
--- a/pypy/translator/jvm/opcodes.py
+++ b/pypy/translator/jvm/opcodes.py
@@ -77,6 +77,8 @@
     'oosend':                   [JvmCallMethod, StoreResult],
     'ooupcast':                 DoNothing,
     'oodowncast':               [DownCast, StoreResult],
+    'oobox_int':                jvm.PYPYBOXINT,
+    'oounbox_int':              jvm.PYPYUNBOXINT,
     'cast_to_object':           DoNothing,
     'cast_from_object':         [DownCast, StoreResult],
     'instanceof':               [CastTo, StoreResult],


More information about the pypy-commit mailing list