[pypy-commit] pypy gc-incminimark-pinning: passing most test_rffi tests again. wip to get all tests running again

groggi noreply at buildbot.pypy.org
Mon Jun 2 17:24:25 CEST 2014


Author: Gregor Wegberg <code at gregorwegberg.com>
Branch: gc-incminimark-pinning
Changeset: r71840:b3af9dfe4046
Date: 2014-05-20 21:46 +0200
http://bitbucket.org/pypy/pypy/changeset/b3af9dfe4046/

Log:	passing most test_rffi tests again. wip to get all tests running
	again

diff --git a/rpython/memory/gctransform/transform.py b/rpython/memory/gctransform/transform.py
--- a/rpython/memory/gctransform/transform.py
+++ b/rpython/memory/gctransform/transform.py
@@ -594,5 +594,11 @@
     def gct_gc_can_move(self, hop):
         return hop.cast_result(rmodel.inputconst(lltype.Bool, False))
 
+    def gct_gc_pin(self, hop):
+        return hop.cast_result(rmodel.inputconst(lltype.Bool, False))
+
+    def gct_gc_unpin(self, hop):
+        pass
+
     def gct_shrink_array(self, hop):
         return hop.cast_result(rmodel.inputconst(lltype.Bool, False))


More information about the pypy-commit mailing list