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

gcc/lto/ChangeLog:

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.

From-SVN: r189804
This commit is contained in:
Uros Bizjak 2012-07-24 12:51:11 +02:00 committed by Uros Bizjak
parent 7aa6d18a7c
commit 0229aee998
6 changed files with 15 additions and 3 deletions

View 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.

View 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;
};

View 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.

View 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;
};

View 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.

View 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. */
};