gcc/lto/ChangeLog:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jul 2012 10:51:11 +0000 (10:51 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jul 2012 10:51:11 +0000 (10:51 +0000)
2012-07-24  Uros Bizjak  <ubizjak@gmail.com>

* lto-tree.h (lang_decl): Add variable_size GTY option.

gcc/go/ChangeLog:

2012-07-24  Uros Bizjak  <ubizjak@gmail.com>

* go-lang.c (lang_decl): Add variable_size GTY option.

gcc/c/ChangeLog:

2012-07-24  Uros Bizjak  <ubizjak@gmail.com>

* c-lang.h (lang_decl): Add variable_size GTY option.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189804 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/c/ChangeLog
gcc/c/c-lang.h
gcc/go/ChangeLog
gcc/go/go-lang.c
gcc/lto/ChangeLog
gcc/lto/lto-tree.h

index b50ce92..2c40784 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-24  Uros Bizjak  <ubizjak@gmail.com>
+
+       * c-lang.h (lang_decl): Add variable_size GTY option.
+
 2012-07-16  Steven Bosscher  <steven@gcc.gnu.org>
 
        * c-decl.c: Include dumpfile.h instead of tree-dump.h.
index 256a269..33271dc 100644 (file)
@@ -36,7 +36,7 @@ struct GTY((variable_size)) lang_type {
   tree objc_info;
 };
 
-struct GTY(()) lang_decl {
+struct GTY((variable_size)) lang_decl {
   char dummy;
 };
 
index 3980213..f2c8a56 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-24  Uros Bizjak  <ubizjak@gmail.com>
+
+       * go-lang.c (lang_decl): Add variable_size GTY option.
+
 2012-05-09  Ian Lance Taylor  <iant@google.com>
 
        * lang.opt: Add -fgo-pkgpath.
index f02f769..8aa056f 100644 (file)
@@ -50,7 +50,7 @@ struct GTY(()) lang_type
 
 /* Language-dependent contents of a decl.  */
 
-struct GTY(()) lang_decl
+struct GTY((variable_size)) lang_decl
 {
   char dummy;
 };
index 676a388..c0ff256 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-24  Uros Bizjak  <ubizjak@gmail.com>
+
+       * lto-tree.h (lang_decl): Add variable_size GTY option.
+
 2012-07-16  Steven Bosscher  <steven@gcc.gnu.org>
 
        * lto.c: Do not include timevar.h.
index 847348c..c29898d 100644 (file)
@@ -28,7 +28,7 @@ struct GTY(()) lang_identifier
   struct tree_identifier base;
 };
 
-struct GTY(()) lang_decl
+struct GTY((variable_size)) lang_decl
 {
   int dummy;  /* Added because ggc does not like empty structs.  */
 };