[pypy-svn] r49824 - pypy/dist/pypy/rpython/memory/gctransform

arigo at codespeak.net arigo at codespeak.net
Sun Dec 16 11:07:43 CET 2007


Author: arigo
Date: Sun Dec 16 11:07:41 2007
New Revision: 49824

Modified:
   pypy/dist/pypy/rpython/memory/gctransform/framework.py
Log:
Don't need to reschedule this array explicitly; the delayed ptr logic
does it for us.


Modified: pypy/dist/pypy/rpython/memory/gctransform/framework.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform/framework.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform/framework.py	Sun Dec 16 11:07:41 2007
@@ -446,7 +446,6 @@
         ll_instance.inst_static_root_end = ll_instance.inst_static_root_start + llmemory.sizeof(llmemory.Address) * len(ll_static_roots_inside)
 
         newgcdependencies = []
-        newgcdependencies.append(self.gcdata.type_info_table)
         newgcdependencies.append(ll_static_roots_inside)
         self.write_typeid_list()
         return newgcdependencies



More information about the Pypy-commit mailing list