[pypy-commit] pypy jit-settrace: fix order

alex_gaynor noreply at buildbot.pypy.org
Fri Oct 25 18:43:24 CEST 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: jit-settrace
Changeset: r67604:913739345d22
Date: 2013-10-25 09:42 -0700
http://bitbucket.org/pypy/pypy/changeset/913739345d22/

Log:	fix order

diff --git a/pypy/module/pypyjit/interp_jit.py b/pypy/module/pypyjit/interp_jit.py
--- a/pypy/module/pypyjit/interp_jit.py
+++ b/pypy/module/pypyjit/interp_jit.py
@@ -55,7 +55,7 @@
 
 class PyPyJitDriver(JitDriver):
     reds = ['frame', 'ec']
-    greens = ['next_instr', 'is_being_profiled', 'pycode', 'is_tracefunc']
+    greens = ['next_instr', 'is_being_profiled', 'is_tracefunc', 'pycode']
     virtualizables = ['frame']
 
 pypyjitdriver = PyPyJitDriver(get_printable_location = get_printable_location,


More information about the pypy-commit mailing list