Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61491:da724c1d1a50
Date: 2013-02-20 11:53 +0200
http://bitbucket.org/pypy/pypy/changeset/da724c1d1a50/
Log: missed one
diff --git a/rpython/jit/backend/x86/jump.py b/rpython/jit/backend/x86/jump.py
--- a/rpython/jit/backend/x86/jump.py
+++ b/rpython/jit/backend/x86/jump.py
@@ -1,5 +1,6 @@
-from rpython.jit.backend.x86.regloc import ImmediateAssemblerLocation
+from rpython.jit.backend.x86.regloc import ImmediateAssemblerLocation,\
+ FrameLoc
def remap_frame_layout(assembler, src_locations, dst_locations, tmpreg):
pending_dests = len(dst_locations)
@@ -94,7 +95,7 @@
for i in range(len(src_locations2)):
loc = src_locations2[i]
dstloc = dst_locations2[i]
- if isinstance(loc, StackLoc):
+ if isinstance(loc, FrameLoc):
key = loc._getregkey()
if (key in dst_keys or (loc.get_width() > WORD and
(key + WORD) in dst_keys)):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit