diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 9a611e0..9dcae52 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -2713,8 +2713,7 @@ assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align) Store them both in the structure *VALUE. EXP must be reducible. */ -struct addr_const GTY(()) -{ +struct GTY(()) addr_const { rtx base; HOST_WIDE_INT offset; }; @@ -2782,8 +2781,7 @@ decode_addr_const (tree exp, struct addr_const *value) Each constant in memory thus far output is recorded in `const_desc_table'. */ -struct constant_descriptor_tree GTY(()) -{ +struct GTY(()) constant_descriptor_tree { /* A MEM for the constant. */ rtx rtl; @@ -3368,8 +3366,7 @@ lookup_constant_def (tree exp) can use one per-file pool. Should add a targetm bit to tell the difference. */ -struct rtx_constant_pool GTY(()) -{ +struct GTY(()) rtx_constant_pool { /* Pointers to first and last constant in pool, as ordered by offset. */ struct constant_descriptor_rtx *first; struct constant_descriptor_rtx *last; @@ -3385,8 +3382,7 @@ struct rtx_constant_pool GTY(()) HOST_WIDE_INT offset; }; -struct constant_descriptor_rtx GTY((chain_next ("%h.next"))) -{ +struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx { struct constant_descriptor_rtx *next; rtx mem; rtx sym; @@ -5180,8 +5176,7 @@ globalize_decl (tree decl) of an alias. This requires that the decl have been defined. Aliases that precede their definition have to be queued for later processing. */ -typedef struct alias_pair GTY(()) -{ +typedef struct GTY(()) alias_pair { tree decl; tree target; } alias_pair; |