[pypy-svn] r47196 - pypy/branch/kill-keepalives-again/pypy/rpython/memory/gctransform

arigo at codespeak.net arigo at codespeak.net
Fri Oct 5 18:42:43 CEST 2007


Author: arigo
Date: Fri Oct  5 18:42:43 2007
New Revision: 47196

Modified:
   pypy/branch/kill-keepalives-again/pypy/rpython/memory/gctransform/framework.py
Log:
Check in this, intermediatedly, because it needs to be fixed at some point.


Modified: pypy/branch/kill-keepalives-again/pypy/rpython/memory/gctransform/framework.py
==============================================================================
--- pypy/branch/kill-keepalives-again/pypy/rpython/memory/gctransform/framework.py	(original)
+++ pypy/branch/kill-keepalives-again/pypy/rpython/memory/gctransform/framework.py	Fri Oct  5 18:42:43 2007
@@ -696,6 +696,7 @@
             llops.genop('bare_setfield', [v, c_name, c_null])
         elif isinstance(FIELD, lltype.Struct):
             c_name = rmodel.inputconst(lltype.Void, name)
+            XXX  # should use 'setinteriorfield'
             v1 = llops.genop('getsubstruct', [v, c_name],
                              resulttype = lltype.Ptr(FIELD))
             gen_zero_gc_pointers(FIELD, v1, llops)



More information about the Pypy-commit mailing list