Author: David Schneider <david.schnei...@picle.org>
Branch: arm-backend-2
Changeset: r51168:120e4541efaf
Date: 2012-01-04 15:59 +0100
http://bitbucket.org/pypy/pypy/changeset/120e4541efaf/

Log:    Add the condition code for always here

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
@@ -156,7 +156,7 @@
 
     def BKPT(self):
         """Unconditional breakpoint"""
-        self.write32(0x1200070)
+        self.write32(cond.AL << 28 | 0x1200070)
 
     # corresponds to the instruction vmrs APSR_nzcv, fpscr
     def VMRS(self, cond=cond.AL):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to