Author: Nicolas Truessel <[email protected]>
Branch: quad-color-gc
Changeset: r86448:1b3b0d2c35be
Date: 2016-08-23 15:46 +0200
http://bitbucket.org/pypy/pypy/changeset/1b3b0d2c35be/

Log:    Fix collect llop not having canmallocgc=True

diff --git a/rpython/rtyper/lltypesystem/lloperation.py 
b/rpython/rtyper/lltypesystem/lloperation.py
--- a/rpython/rtyper/lltypesystem/lloperation.py
+++ b/rpython/rtyper/lltypesystem/lloperation.py
@@ -516,7 +516,7 @@
 
     # __________ qcgc operations __________
     'qcgc_allocate':    LLOp(canmallocgc=True),
-    'qcgc_collect':     LLOp(), # XXX: No allocations, so no canmallocgc ?
+    'qcgc_collect':     LLOp(canmallocgc=True),
 
     # __________ weakrefs __________
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to