Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r51161:5767eb76b3f3
Date: 2012-01-03 11:11 +0100
http://bitbucket.org/pypy/pypy/changeset/5767eb76b3f3/

Log:    write the fail index here

diff --git a/pypy/jit/backend/arm/regalloc.py b/pypy/jit/backend/arm/regalloc.py
--- a/pypy/jit/backend/arm/regalloc.py
+++ b/pypy/jit/backend/arm/regalloc.py
@@ -1068,6 +1068,7 @@
         # do the call
         faildescr = guard_op.getdescr()
         fail_index = self.cpu.get_fail_descr_number(faildescr)
+        self.assembler._write_fail_index(fail_index)
         args = [imm(rffi.cast(lltype.Signed, op.getarg(0).getint()))]
         self.assembler.emit_op_call(op, args, self, fcond, fail_index)
         # then reopen the stack
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to