[pypy-commit] pypy jitypes2: Move the commented-out print at its correct position, at least.

arigo noreply at buildbot.pypy.org
Sun May 15 17:05:21 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jitypes2
Changeset: r44177:5c1eaa2b2604
Date: 2011-05-15 16:20 +0200
http://bitbucket.org/pypy/pypy/changeset/5c1eaa2b2604/

Log:	Move the commented-out print at its correct position, at least.

diff --git a/pypy/jit/backend/x86/runner.py b/pypy/jit/backend/x86/runner.py
--- a/pypy/jit/backend/x86/runner.py
+++ b/pypy/jit/backend/x86/runner.py
@@ -108,8 +108,8 @@
         addr = executable_token._x86_bootstrap_code
         #llop.debug_print(lltype.Void, ">>>> Entering", addr)
         func = rffi.cast(lltype.Ptr(self.BOOTSTRAP_TP), addr)
+        fail_index = self._execute_call(func)
         #llop.debug_print(lltype.Void, "<<<< Back")
-        fail_index = self._execute_call(func)
         return self.get_fail_descr_from_number(fail_index)
 
     def _execute_call(self, func):


More information about the pypy-commit mailing list