[pypy-commit] pypy gcheader-decl: GC headers don't need to be in the database

rlamy pypy.commits at gmail.com
Sun Apr 24 00:10:00 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: gcheader-decl
Changeset: r83836:b05e778c895c
Date: 2016-04-24 05:08 +0100
http://bitbucket.org/pypy/pypy/changeset/b05e778c895c/

Log:	GC headers don't need to be in the database

diff --git a/rpython/translator/c/node.py b/rpython/translator/c/node.py
--- a/rpython/translator/c/node.py
+++ b/rpython/translator/c/node.py
@@ -547,7 +547,6 @@
             gct = self.db.gctransformer
             if gct is not None:
                 self.gc_init = gct.gcheader_initdata(self.obj)
-                db.getcontainernode(self.gc_init)
             else:
                 self.gc_init = None
 
@@ -678,7 +677,6 @@
             gct = self.db.gctransformer
             if gct is not None:
                 self.gc_init = gct.gcheader_initdata(self.obj)
-                db.getcontainernode(self.gc_init)
             else:
                 self.gc_init = None
 


More information about the pypy-commit mailing list