[pypy-commit] pypy jitframe-on-heap: store the loop for debugging

fijal noreply at buildbot.pypy.org
Wed Mar 6 23:05:27 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r62148:ea68db3f9825
Date: 2013-03-07 00:04 +0200
http://bitbucket.org/pypy/pypy/changeset/ea68db3f9825/

Log:	store the loop for debugging

diff --git a/rpython/jit/backend/llsupport/test/test_regalloc_integration.py b/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
--- a/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
+++ b/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
@@ -95,6 +95,7 @@
 
     def interpret(self, ops, args, run=True):
         loop = self.parse(ops)
+        self.loop = loop
         looptoken = JitCellToken()
         self.cpu.compile_loop(loop.inputargs, loop.operations, looptoken)
         arguments = []


More information about the pypy-commit mailing list