diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2011-04-14 01:38:07 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2011-04-14 01:38:07 +0000 |
commit | 94bd18251335d1f63e0b89e2572183a2b8775ffc (patch) | |
tree | 591214636bc39dbec63bb2c3928f2ba355c8ab35 /gcc/tree.h | |
parent | b77020b201ea5662a4c915ac0e69ebd3409fb4d3 (diff) | |
download | gcc-94bd18251335d1f63e0b89e2572183a2b8775ffc.zip gcc-94bd18251335d1f63e0b89e2572183a2b8775ffc.tar.gz gcc-94bd18251335d1f63e0b89e2572183a2b8775ffc.tar.bz2 |
tree.h (struct tree_constructor): Include tree_typed instead of tree_common.
* tree.h (struct tree_constructor): Include tree_typed instead of
tree_common.
* tree.c (initialize_tree_contains_struct): Mark TS_CONSTRUCTOR as
TS_TYPED instead of TS_COMMON.
From-SVN: r172409
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1613,7 +1613,7 @@ DEF_VEC_O(constructor_elt); DEF_VEC_ALLOC_O(constructor_elt,gc); struct GTY(()) tree_constructor { - struct tree_common common; + struct tree_typed typed; VEC(constructor_elt,gc) *elts; }; |