diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-23 16:29:33 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-23 16:29:33 +0000 |
commit | 9fac1c660cc9bd0691cafeec669ce7a61ca4d2ad (patch) | |
tree | a53e7634a67bdd62e10ed93275097fbd631441ef /gcc/tree.h | |
parent | b7d1c9e6e36362cba03c772b1b7974aff173de2e (diff) | |
download | gcc-9fac1c660cc9bd0691cafeec669ce7a61ca4d2ad.tar.gz |
2009-03-23 Richard Guenther <rguenther@suse.de>
* cgraph.h (struct cgraph_node): Reorder fields for 64-bit hosts.
* tree.h (struct tree_type): Likewise.
* reload.h (struct insn_chain): Likewise.
* dwarf2out.c (struct dw_loc_descr_struct): Likewise.
* function.h (struct function): Likewise.
* tree-ssa-structalias.c (struct equiv_class_label): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145009 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 1f70e0461ea..e1c52e135b3 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2286,6 +2286,7 @@ struct tree_type GTY(()) unsigned user_align : 1; unsigned int align; + alias_set_type alias_set; tree pointer_to; tree reference_to; union tree_type_symtab { @@ -2302,7 +2303,6 @@ struct tree_type GTY(()) tree binfo; tree context; tree canonical; - alias_set_type alias_set; /* Points to a structure whose details depend on the language in use. */ struct lang_type *lang_specific; }; |