Author: David Schneider <[email protected]>
Branch: remove-globals-in-jit
Changeset: r59684:0ce75b404895
Date: 2013-01-03 12:47 +0100
http://bitbucket.org/pypy/pypy/changeset/0ce75b404895/
Log: fix
diff --git a/pypy/jit/backend/arm/opassembler.py
b/pypy/jit/backend/arm/opassembler.py
--- a/pypy/jit/backend/arm/opassembler.py
+++ b/pypy/jit/backend/arm/opassembler.py
@@ -319,8 +319,7 @@
def emit_op_finish(self, op, arglocs, regalloc, fcond):
[argloc] = arglocs
if argloc is not r.r0: #XXX verify this
- self.mov(argloc, eax)
- self.mov_loc_loc(arg_loc, r.r0, fcond)
+ self.mov_loc_loc(argloc, r.r0, fcond)
# exit function
self.gen_func_epilog()
return fcond
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit