Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61447:d23fa8f66359
Date: 2013-02-19 10:44 +0200
http://bitbucket.org/pypy/pypy/changeset/d23fa8f66359/

Log:    seems to not be needed

diff --git a/rpython/jit/backend/arm/test/test_runner.py 
b/rpython/jit/backend/arm/test/test_runner.py
--- a/rpython/jit/backend/arm/test/test_runner.py
+++ b/rpython/jit/backend/arm/test/test_runner.py
@@ -179,8 +179,6 @@
 
     def test_compile_loop_many_int_args(self):
         for numargs in range(2, 30):
-            for _ in range(numargs):
-                self.cpu.reserve_some_free_fail_descr_number()
             ops = []
             arglist = "[%s]\n" % ", ".join(["i%d" % i for i in range(numargs)])
             ops.append(arglist)
@@ -199,7 +197,6 @@
             ops = "".join(ops)
             loop = parse(ops)
             looptoken = JitCellToken()
-            done_number = 
self.cpu.get_fail_descr_number(loop.operations[-1].getdescr())
             self.cpu.compile_loop(loop.inputargs, loop.operations, looptoken)
             ARGS = [lltype.Signed] * numargs
             RES = lltype.Signed
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to