[pypy-commit] pypy arm-backend-2: remove unused imports

bivab noreply at buildbot.pypy.org
Mon Jan 9 11:56:42 CET 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r51159:2c283e1293a8
Date: 2012-01-03 11:09 +0100
http://bitbucket.org/pypy/pypy/changeset/2c283e1293a8/

Log:	remove unused imports

diff --git a/pypy/jit/backend/arm/assembler.py b/pypy/jit/backend/arm/assembler.py
--- a/pypy/jit/backend/arm/assembler.py
+++ b/pypy/jit/backend/arm/assembler.py
@@ -1,7 +1,6 @@
 from __future__ import with_statement
 import os
 from pypy.jit.backend.arm.helper.assembler import saved_registers, \
-                                                    count_reg_args, \
                                                     decode32, encode32, \
                                                     decode64
 from pypy.jit.backend.arm import conditions as c
@@ -13,7 +12,6 @@
                     ARMv7RegisterManager, check_imm_arg,
                     operations as regalloc_operations,
                     operations_with_guard as regalloc_operations_with_guard)
-from pypy.jit.backend.arm.jump import remap_frame_layout
 from pypy.jit.backend.llsupport.asmmemmgr import MachineDataBlockWrapper
 from pypy.jit.backend.model import CompiledLoopToken
 from pypy.jit.codewriter import longlong
diff --git a/pypy/jit/backend/arm/regalloc.py b/pypy/jit/backend/arm/regalloc.py
--- a/pypy/jit/backend/arm/regalloc.py
+++ b/pypy/jit/backend/arm/regalloc.py
@@ -13,7 +13,7 @@
                                                     )
 from pypy.jit.backend.arm.jump import remap_frame_layout_mixed
 from pypy.jit.backend.arm.arch import MY_COPY_OF_REGS
-from pypy.jit.backend.arm.arch import WORD, N_REGISTERS_SAVED_BY_MALLOC
+from pypy.jit.backend.arm.arch import WORD
 from pypy.jit.codewriter import longlong
 from pypy.jit.metainterp.history import (Const, ConstInt, ConstFloat, ConstPtr,
                                         Box, BoxPtr,


More information about the pypy-commit mailing list