Author: Ronan Lamy <[email protected]>
Branch: 
Changeset: r83844:054e2f4e2e53
Date: 2016-04-24 17:00 +0100
http://bitbucket.org/pypy/pypy/changeset/054e2f4e2e53/

Log:    Merged in gcheader-decl (pull request #432)

        Reduce size of the generated C sources fixes issue #2281

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -6,3 +6,7 @@
 .. startrev: aa60332382a1
 
 .. branch: techtonik/introductionrst-simplify-explanation-abo-1460879168046
+
+.. branch: gcheader-decl
+
+Reduce the size of generated C sources.
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
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to