[pypy-commit] pypy gc-incminimark-pinning: as discussed with fijal (irc, 2014-08-13) should be correct.

groggi noreply at buildbot.pypy.org
Thu Aug 14 10:35:35 CEST 2014


Author: Gregor Wegberg <code at gregorwegberg.com>
Branch: gc-incminimark-pinning
Changeset: r72790:7243202f2115
Date: 2014-08-13 16:54 +0200
http://bitbucket.org/pypy/pypy/changeset/7243202f2115/

Log:	as discussed with fijal (irc, 2014-08-13) should be correct.

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
@@ -480,9 +480,9 @@
     'gc_writebarrier':      LLOp(canrun=True),
     'gc_writebarrier_before_copy': LLOp(canrun=True),
     'gc_heap_stats'       : LLOp(canmallocgc=True),
-    'gc_pin'              : LLOp(canrun=True), # XXX understand this, correct? (groggi)
-    'gc_unpin'            : LLOp(canrun=True), # XXX understand this, correct? (groggi)
-    'gc__is_pinned'        : LLOp(canrun=True), # XXX understand this, correct? (groggi)
+    'gc_pin'              : LLOp(canrun=True),
+    'gc_unpin'            : LLOp(canrun=True),
+    'gc__is_pinned'        : LLOp(canrun=True),
 
     'gc_get_rpy_roots'    : LLOp(),
     'gc_get_rpy_referents': LLOp(),


More information about the pypy-commit mailing list