Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61068:bccb2f5c2cec
Date: 2013-02-11 11:16 +0200
http://bitbucket.org/pypy/pypy/changeset/bccb2f5c2cec/

Log:    the famous never passing test

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,11 @@
     # ====> ../../test/runner_test.py
 
     add_loop_instructions = ['mov', 'add', 'test', 'je', 'jmp']
-    bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'mov',
-                                'call', 'mov', 'jmp']
+    if WORD == 4:
+        bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'call', 'jmp']
+    else:
+        bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'mov',
+                                    'call', 'mov', 'jmp']
 
     def get_cpu(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