diff options
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index f4a2e71..64e491e 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -33,8 +33,7 @@ along with GCC; see the file COPYING3. If not see /* Language-specific declaration information. */ -struct lang_decl GTY(()) -{ +struct GTY(()) lang_decl { char dummy; }; @@ -57,8 +56,7 @@ struct lang_decl GTY(()) and C_RID_YYCODE is the token number wanted by Yacc. */ #define C_IS_RESERVED_WORD(ID) TREE_LANG_FLAG_0 (ID) -struct lang_type GTY(()) -{ +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. */ @@ -407,8 +405,7 @@ struct c_parm { that keep track of the progress of compilation of the current function. Used for nested functions. */ -struct language_function GTY(()) -{ +struct GTY(()) language_function { struct c_language_function base; tree x_break_label; tree x_cont_label; |