[pypy-commit] pypy arm-backed-float: (arigo, bivab) seems to only be a restriction in the Thumb instruction set and only when the PC is also in the list of registers

bivab noreply at buildbot.pypy.org
Wed May 18 17:09:38 CEST 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backed-float
Changeset: r44286:e8b4ed2131b6
Date: 2011-05-18 17:18 +0200
http://bitbucket.org/pypy/pypy/changeset/e8b4ed2131b6/

Log:	(arigo, bivab) seems to only be a restriction in the Thumb
	instruction set and only when the PC is also in the list of
	registers

diff --git a/pypy/jit/backend/arm/codebuilder.py b/pypy/jit/backend/arm/codebuilder.py
--- a/pypy/jit/backend/arm/codebuilder.py
+++ b/pypy/jit/backend/arm/codebuilder.py
@@ -145,7 +145,6 @@
         self.write32(instr)
 
     def POP(self, regs, cond=cond.AL):
-        assert reg.lr.value not in regs
         instr = self._encode_reg_list(cond << 28 | 0x8BD << 16, regs)
         self.write32(instr)
 


More information about the pypy-commit mailing list