Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61352:55ad9d09f1b1
Date: 2013-02-17 18:33 +0200
http://bitbucket.org/pypy/pypy/changeset/55ad9d09f1b1/

Log:    no JMP_i, fine

diff --git a/rpython/jit/backend/x86/assembler.py 
b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -284,7 +284,7 @@
         offset = mc.get_relative_pos() - jnz_location
         assert 0 < offset <= 127
         mc.overwrite(jnz_location-1, chr(offset))
-        mc.JMP_i(self.propagate_exception_path)
+        mc.JMP(imm(self.propagate_exception_path))
         #
         rawstart = mc.materialize(self.cpu.asmmemmgr, [])
         self.stack_check_slowpath = rawstart
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to