[pypy-commit] pypy ppc-jit-backend: Add the operation KEEPALIVE to the test for noops

bivab noreply at buildbot.pypy.org
Thu Feb 16 09:51:25 CET 2012


Author: David Schneider <david.schneider at picle.org>
Branch: ppc-jit-backend
Changeset: r52537:7886a5225210
Date: 2012-02-16 00:43 -0800
http://bitbucket.org/pypy/pypy/changeset/7886a5225210/

Log:	Add the operation KEEPALIVE to the test for noops

diff --git a/pypy/jit/backend/test/runner_test.py b/pypy/jit/backend/test/runner_test.py
--- a/pypy/jit/backend/test/runner_test.py
+++ b/pypy/jit/backend/test/runner_test.py
@@ -1677,6 +1677,7 @@
         c_box = self.alloc_string("hi there").constbox()
         c_nest = ConstInt(0)
         self.execute_operation(rop.DEBUG_MERGE_POINT, [c_box, c_nest], 'void')
+        self.execute_operation(rop.KEEPALIVE, [c_box], 'void')
         self.execute_operation(rop.JIT_DEBUG, [c_box, c_nest, c_nest,
                                                c_nest, c_nest], 'void')
 


More information about the pypy-commit mailing list