Author: David Schneider <[email protected]>
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)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to