[pypy-commit] pypy default: append debugging code at the beginning even if for loops

fijal noreply at buildbot.pypy.org
Tue Dec 27 12:17:16 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r50890:e105505cc286
Date: 2011-12-27 13:16 +0200
http://bitbucket.org/pypy/pypy/changeset/e105505cc286/

Log:	append debugging code at the beginning even if for loops

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
@@ -679,9 +679,8 @@
             looptoken._x86_debug_checksum = s
 
             newoperations = []
-            if bridge:
-                self._append_debugging_code(newoperations, bridge, number,
-                                            None)
+            self._append_debugging_code(newoperations, bridge, number,
+                                        None)
             for op in operations:
                 newoperations.append(op)
                 if op.getopnum() == rop.LABEL:


More information about the pypy-commit mailing list