Commit 0229aee9 by Uros Bizjak Committed by Uros Bizjak

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
parent 7aa6d18a
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> 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
* c-decl.c: Include dumpfile.h instead of tree-dump.h. * c-decl.c: Include dumpfile.h instead of tree-dump.h.
......
...@@ -36,7 +36,7 @@ struct GTY((variable_size)) lang_type { ...@@ -36,7 +36,7 @@ struct GTY((variable_size)) lang_type {
tree objc_info; tree objc_info;
}; };
struct GTY(()) lang_decl { struct GTY((variable_size)) lang_decl {
char dummy; char dummy;
}; };
......
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> 2012-05-09 Ian Lance Taylor <iant@google.com>
* lang.opt: Add -fgo-pkgpath. * lang.opt: Add -fgo-pkgpath.
......
...@@ -50,7 +50,7 @@ struct GTY(()) lang_type ...@@ -50,7 +50,7 @@ struct GTY(()) lang_type
/* Language-dependent contents of a decl. */ /* Language-dependent contents of a decl. */
struct GTY(()) lang_decl struct GTY((variable_size)) lang_decl
{ {
char dummy; char dummy;
}; };
......
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> 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
* lto.c: Do not include timevar.h. * lto.c: Do not include timevar.h.
......
...@@ -28,7 +28,7 @@ struct GTY(()) lang_identifier ...@@ -28,7 +28,7 @@ struct GTY(()) lang_identifier
struct tree_identifier base; struct tree_identifier base;
}; };
struct GTY(()) lang_decl struct GTY((variable_size)) lang_decl
{ {
int dummy; /* Added because ggc does not like empty structs. */ int dummy; /* Added because ggc does not like empty structs. */
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment