Author: Gregor Wegberg <[email protected]>
Branch: gc-incminimark-pinning
Changeset: r72813:4eed5d00ac19
Date: 2014-08-14 19:04 +0200
http://bitbucket.org/pypy/pypy/changeset/4eed5d00ac19/

Log:    fix code for the case of no pinned objects

diff --git a/rpython/jit/backend/llsupport/gc.py 
b/rpython/jit/backend/llsupport/gc.py
--- a/rpython/jit/backend/llsupport/gc.py
+++ b/rpython/jit/backend/llsupport/gc.py
@@ -182,7 +182,10 @@
                     newnewops.extend(reops)
                 else:
                     newnewops.append(op)
-        return newnewops
+            #
+            return newnewops
+        else:
+            return newops
 
     @specialize.memo()
     def getframedescrs(self, cpu):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to