[pypy-commit] pypy ppc-jit-backend: Import BoxPtr.

edelsohn noreply at buildbot.pypy.org
Mon Feb 13 16:24:59 CET 2012


Author: edelsohn
Branch: ppc-jit-backend
Changeset: r52413:49ee8745859b
Date: 2012-02-13 10:19 -0500
http://bitbucket.org/pypy/pypy/changeset/49ee8745859b/

Log:	Import BoxPtr.

diff --git a/pypy/jit/backend/ppc/regalloc.py b/pypy/jit/backend/ppc/regalloc.py
--- a/pypy/jit/backend/ppc/regalloc.py
+++ b/pypy/jit/backend/ppc/regalloc.py
@@ -11,8 +11,9 @@
                                                          prepare_binary_int_op,
                                                          prepare_binary_int_op_with_imm,
                                                          prepare_unary_cmp)
-from pypy.jit.metainterp.history import (INT, REF, FLOAT, Const, ConstInt, 
-                                         ConstPtr, Box)
+from pypy.jit.metainterp.history import (Const, ConstInt, ConstFloat, ConstPtr,
+                                         Box, BoxPtr,
+                                         INT, REF, FLOAT)
 from pypy.jit.metainterp.history import JitCellToken, TargetToken
 from pypy.jit.metainterp.resoperation import rop
 from pypy.jit.backend.ppc import locations


More information about the pypy-commit mailing list