diff options
Diffstat (limited to 'gcc/c/c-lang.h')
-rw-r--r-- | gcc/c/c-lang.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c/c-lang.h b/gcc/c/c-lang.h index 7fcf333..e974906 100644 --- a/gcc/c/c-lang.h +++ b/gcc/c/c-lang.h @@ -23,7 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "c-family/c-common.h" #include "ggc.h" -struct GTY((variable_size)) lang_type { +struct GTY(()) 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. */ @@ -35,7 +35,7 @@ struct GTY((variable_size)) lang_type { tree objc_info; }; -struct GTY((variable_size)) lang_decl { +struct GTY(()) lang_decl { char dummy; }; |