Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r60407:d29ceae110c7
Date: 2013-01-24 00:28 +0200
http://bitbucket.org/pypy/pypy/changeset/d29ceae110c7/

Log:    one extra mov for a bit

diff --git a/rpython/jit/backend/x86/test/test_runner.py 
b/rpython/jit/backend/x86/test/test_runner.py
--- a/rpython/jit/backend/x86/test/test_runner.py
+++ b/rpython/jit/backend/x86/test/test_runner.py
@@ -31,8 +31,8 @@
     # ====> ../../test/runner_test.py
 
     add_loop_instructions = ['mov', 'add', 'test', 'je', 'jmp']
-    bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'call',
-                                'mov', 'jmp']
+    bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'mov',
+                                'call', 'mov', 'jmp']
 
     def setup_method(self, meth):
         self.cpu = CPU(rtyper=None, stats=FakeStats())
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to