[pypy-svn] r75112 - pypy/branch/blackhole-improvement/pypy/jit/tl/tla

arigo at codespeak.net arigo at codespeak.net
Fri Jun 4 17:26:55 CEST 2010


Author: arigo
Date: Fri Jun  4 17:26:53 2010
New Revision: 75112

Modified:
   pypy/branch/blackhole-improvement/pypy/jit/tl/tla/tla.py
Log:
Reorder the green vars.


Modified: pypy/branch/blackhole-improvement/pypy/jit/tl/tla/tla.py
==============================================================================
--- pypy/branch/blackhole-improvement/pypy/jit/tl/tla/tla.py	(original)
+++ pypy/branch/blackhole-improvement/pypy/jit/tl/tla/tla.py	Fri Jun  4 17:26:53 2010
@@ -71,10 +71,10 @@
 
 # ____________________________________________________________
 
-def get_printable_location(bytecode, pc):
+def get_printable_location(pc, bytecode):
     return str(pc)
 
-jitdriver = JitDriver(greens=['bytecode', 'pc'],
+jitdriver = JitDriver(greens=['pc', 'bytecode'],
                       reds=['self'],
                       virtualizables=['self'],
                       get_printable_location=get_printable_location)



More information about the Pypy-commit mailing list