Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61845:1d7cd337881c
Date: 2013-02-27 14:47 +0200
http://bitbucket.org/pypy/pypy/changeset/1d7cd337881c/

Log:    like that?

diff --git a/rpython/jit/backend/arm/assembler.py 
b/rpython/jit/backend/arm/assembler.py
--- a/rpython/jit/backend/arm/assembler.py
+++ b/rpython/jit/backend/arm/assembler.py
@@ -749,7 +749,7 @@
             mc.NOP()
         else:
             mc.gen_load_int(r.lr.value, expected_size)
-        mc.CMP_rr(r.ip.value, r.lr.value)
+        mc.CMP_rr(r.lr.value, r.ip.value)
 
         jg_location = mc.currpos()
         mc.BKPT()
@@ -759,7 +759,6 @@
 
         self.push_gcmap(mc, gcmap, push=True)
 
-
         self.mc.BL(self._frame_realloc_slowpath)
 
         # patch jg_location above
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to