diff options
author | Laurynas Biveinis <laurynas.biveinis@gmail.com> | 2010-12-03 04:11:10 +0000 |
---|---|---|
committer | Laurynas Biveinis <lauras@gcc.gnu.org> | 2010-12-03 04:11:10 +0000 |
commit | 1aa6700378e5188a853c018256113ce6e1fb5c05 (patch) | |
tree | 6470a9f77cdfa60e0a7dd2c91959afbb56edf5b3 /gcc/dwarf2out.c | |
parent | 57e000b01a892aba50ceb927110c89f383819284 (diff) | |
download | gcc-1aa6700378e5188a853c018256113ce6e1fb5c05.zip gcc-1aa6700378e5188a853c018256113ce6e1fb5c05.tar.gz gcc-1aa6700378e5188a853c018256113ce6e1fb5c05.tar.bz2 |
tree.h (struct call_expr_arg_iterator_d): Remove GTY tag.
2010-11-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* tree.h (struct call_expr_arg_iterator_d): Remove GTY tag.
(const_call_expr_arg_iterator_d): Likewise.
(expanded_location): Likewise.
* c-tree.h (struct c_arg_tag_d): Likewise.
* dwarf2out.c (struct cfa_loc): Likewise.
(struct skeleton_chain_struct): Likewise.
* except.c (struct ttypes_filter): Likewise.
* cselib.h (struct cselib_val_struct): Likewise.
(elt_loc_list): Likewise.
(elt_list): Likewise.
* varasm.c (struct addr_const): Likewise.
* tree-flow.h (struct edge_prediction): Likewise.
(struct int_tree_map): Likewise.
(struct _edge_var_map): Likewise.
ada:
2010-11-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* gcc-interface/decl.c (struct subst_pair_d): Remove GTY tag.
(variant_desc_d): Likewise.
cp:
2010-11-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* cp-tree.h (struct aggr_init_expr_arg_iterator_d): Remove GTY
tag.
From-SVN: r167406
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 04764ba..75faec5 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -282,7 +282,7 @@ dw_cfi_node; It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET. Instead of passing around REG and OFFSET, we pass a copy of this structure. */ -typedef struct GTY(()) cfa_loc { +typedef struct cfa_loc { HOST_WIDE_INT offset; HOST_WIDE_INT base_offset; unsigned int reg; @@ -5879,7 +5879,7 @@ typedef struct GTY(()) limbo_die_struct { } limbo_die_node; -typedef struct GTY(()) skeleton_chain_struct +typedef struct skeleton_chain_struct { dw_die_ref old_die; dw_die_ref new_die; |