[pypy-commit] pypy arm-backend-2: update mnemonic of the mov instruction used in test_compile_asm_len

bivab noreply at buildbot.pypy.org
Mon Aug 20 11:36:15 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r56765:59131b703248
Date: 2012-08-20 11:33 +0200
http://bitbucket.org/pypy/pypy/changeset/59131b703248/

Log:	update mnemonic of the mov instruction used in test_compile_asm_len

diff --git a/pypy/jit/backend/arm/test/test_runner.py b/pypy/jit/backend/arm/test/test_runner.py
--- a/pypy/jit/backend/arm/test/test_runner.py
+++ b/pypy/jit/backend/arm/test/test_runner.py
@@ -26,7 +26,8 @@
     # for the individual tests see
     # ====> ../../test/runner_test.py
 
-    add_loop_instructions = ['mov', 'adds', 'cmp', 'beq', 'b']
+    add_loop_instructions = ['nop', # this is the same as mov r0, r0
+			     'adds', 'cmp', 'beq', 'b']
     bridge_loop_instructions = ['movw', 'movt', 'bx']
 
     def setup_method(self, meth):


More information about the pypy-commit mailing list