diff options
Diffstat (limited to 'gcc/tree-ssa-operands.h')
-rw-r--r-- | gcc/tree-ssa-operands.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h index a8d364d..691db93 100644 --- a/gcc/tree-ssa-operands.h +++ b/gcc/tree-ssa-operands.h @@ -53,14 +53,13 @@ typedef struct use_optype_d *use_optype_p; operand memory manager. Operands are suballocated out of this block. The MEM array varies in size. */ -struct ssa_operand_memory_d GTY((chain_next("%h.next"))) -{ +struct GTY((chain_next("%h.next"))) ssa_operand_memory_d { struct ssa_operand_memory_d *next; char mem[1]; }; /* Per-function operand caches. */ -struct ssa_operands GTY(()) { +struct GTY(()) ssa_operands { struct ssa_operand_memory_d *operand_memory; unsigned operand_memory_index; /* Current size of the operand memory buffer. */ |