diff options
author | Laurynas Biveinis <laurynas.biveinis@gmail.com> | 2010-09-15 03:08:22 +0000 |
---|---|---|
committer | Laurynas Biveinis <lauras@gcc.gnu.org> | 2010-09-15 03:08:22 +0000 |
commit | 969c37b70d25aa628a3d4b8348dbf42fb6484e1e (patch) | |
tree | 9a172d2a9207c4ad65cf975dfeaebff15630cc58 /gcc/c-lang.h | |
parent | 1f2102bbd01e192290f3c02836de8460a5daaf8e (diff) | |
download | gcc-969c37b70d25aa628a3d4b8348dbf42fb6484e1e.zip gcc-969c37b70d25aa628a3d4b8348dbf42fb6484e1e.tar.gz gcc-969c37b70d25aa628a3d4b8348dbf42fb6484e1e.tar.bz2 |
c-lang.h (struct lang_type): Add variable_size GTY option.
gcc/ChangeLog:
2010-09-14 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* c-lang.h (struct lang_type): Add variable_size GTY option.
gcc/lto/ChangeLog:
2010-09-14 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* lto-tree.h (struct lang_type): Add variable_size GTY option.
From-SVN: r164295
Diffstat (limited to 'gcc/c-lang.h')
-rw-r--r-- | gcc/c-lang.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lang.h b/gcc/c-lang.h index c0bdc7c..4fe1835 100644 --- a/gcc/c-lang.h +++ b/gcc/c-lang.h @@ -24,7 +24,7 @@ along with GCC; see the file COPYING3. If not see #include "c-family/c-common.h" #include "ggc.h" -struct GTY(()) lang_type { +struct GTY((variable_size)) lang_type { /* In a RECORD_TYPE, a sorted array of the fields of the type. */ struct sorted_fields_type * GTY ((reorder ("resort_sorted_fields"))) s; /* In an ENUMERAL_TYPE, the min and max values. */ |