summaryrefslogtreecommitdiff
path: root/gcc/cselib.h
diff options
context:
space:
mode:
authorLaurynas Biveinis <laurynas.biveinis@gmail.com>2010-12-03 04:11:10 +0000
committerLaurynas Biveinis <lauras@gcc.gnu.org>2010-12-03 04:11:10 +0000
commit1aa6700378e5188a853c018256113ce6e1fb5c05 (patch)
tree6470a9f77cdfa60e0a7dd2c91959afbb56edf5b3 /gcc/cselib.h
parent57e000b01a892aba50ceb927110c89f383819284 (diff)
downloadgcc-1aa6700378e5188a853c018256113ce6e1fb5c05.tar.gz
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/cselib.h')
-rw-r--r--gcc/cselib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cselib.h b/gcc/cselib.h
index 4259e396fdf..5964a4487ce 100644
--- a/gcc/cselib.h
+++ b/gcc/cselib.h
@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
/* Describe a value. */
-typedef struct GTY(()) cselib_val_struct {
+typedef struct cselib_val_struct {
/* The hash value. */
unsigned int hash;
@@ -42,7 +42,7 @@ typedef struct GTY(()) cselib_val_struct {
} cselib_val;
/* A list of rtl expressions that hold the same value. */
-struct GTY(()) elt_loc_list {
+struct elt_loc_list {
/* Next element in the list. */
struct elt_loc_list *next;
/* An rtl expression that holds the value. */
@@ -52,7 +52,7 @@ struct GTY(()) elt_loc_list {
};
/* A list of cselib_val structures. */
-struct GTY(()) elt_list {
+struct elt_list {
struct elt_list *next;
cselib_val *elt;
};