[pypy-commit] pypy gc-incminimark-pinning: fix typo.

groggi noreply at buildbot.pypy.org
Mon Jun 23 11:48:15 CEST 2014


Author: Gregor Wegberg <code at gregorwegberg.com>
Branch: gc-incminimark-pinning
Changeset: r72153:daf02c5649ff
Date: 2014-06-16 17:00 +0200
http://bitbucket.org/pypy/pypy/changeset/daf02c5649ff/

Log:	fix typo.

	pypy translates now

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
@@ -482,7 +482,7 @@
     '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__is_pinned'        : LLOp(canrun=True), # XXX understand this, correct? (groggi)
 
     'gc_get_rpy_roots'    : LLOp(),
     'gc_get_rpy_referents': LLOp(),


More information about the pypy-commit mailing list