[pypy-commit] pypy ppc-jit-backend: update interface of compile_loop

bivab noreply at buildbot.pypy.org
Tue Feb 7 17:17:58 CET 2012


Author: David Schneider <david.schneider at picle.org>
Branch: ppc-jit-backend
Changeset: r52193:b102e85bc3bb
Date: 2012-01-19 13:54 -0800
http://bitbucket.org/pypy/pypy/changeset/b102e85bc3bb/

Log:	update interface of compile_loop

diff --git a/pypy/jit/backend/ppc/runner.py b/pypy/jit/backend/ppc/runner.py
--- a/pypy/jit/backend/ppc/runner.py
+++ b/pypy/jit/backend/ppc/runner.py
@@ -42,7 +42,7 @@
     def setup_once(self):
         self.asm.setup_once()
 
-    def compile_loop(self, inputargs, operations, looptoken, log=False):
+    def compile_loop(self, inputargs, operations, looptoken, log=True, name=''):
         self.asm.assemble_loop(inputargs, operations, looptoken, log)
 
     def compile_bridge(self, faildescr, inputargs, operations, 


More information about the pypy-commit mailing list