Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r44765:f18b7dbfc882
Date: 2011-06-07 09:04 +0200
http://bitbucket.org/pypy/pypy/changeset/f18b7dbfc882/

Log:    Give up on a bit of debugging info for now, but unbreak everything

diff --git a/pypy/jit/backend/x86/assembler.py 
b/pypy/jit/backend/x86/assembler.py
--- a/pypy/jit/backend/x86/assembler.py
+++ b/pypy/jit/backend/x86/assembler.py
@@ -557,15 +557,7 @@
                                    self.cpu.gc_ll_descr.gcrootmap)
 
     def _find_debug_merge_point(self, operations):
-
-        for op in operations:
-            if op.getopnum() == rop.DEBUG_MERGE_POINT:
-                funcname = op.getarg(0)._get_str()
-                break
-        else:
-            funcname = '?'
-        return "%s (loop counter %d)" % (funcname,
-                                         len(self.loop_run_counters))
+        return '? (loop counter %d)' % len(self.loop_run_counters)
 
     def _register_counter(self):
         if self._debug:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to