Author: Maciej Fijalkowski <[email protected]>
Branch: backend-vector-ops
Changeset: r52018:607bec7b7a95
Date: 2012-02-01 15:59 +0200
http://bitbucket.org/pypy/pypy/changeset/607bec7b7a95/

Log:    pass None here, jumps have no vectors

diff --git a/pypy/jit/backend/x86/jump.py b/pypy/jit/backend/x86/jump.py
--- a/pypy/jit/backend/x86/jump.py
+++ b/pypy/jit/backend/x86/jump.py
@@ -76,9 +76,9 @@
             assembler.regalloc_push(src)
             assembler.regalloc_pop(dst)
             return
-        assembler.regalloc_mov(src, tmpreg)
+        assembler.regalloc_mov(None, src, tmpreg)
         src = tmpreg
-    assembler.regalloc_mov(src, dst)
+    assembler.regalloc_mov(None, src, dst)
 
 def remap_frame_layout_mixed(assembler,
                              src_locations1, dst_locations1, tmpreg1,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to