From f7587ed0d8089741a2eca0417aa618565d531596 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Fri, 16 Jul 2010 01:30:32 +0000 Subject: [PATCH] c-decl.c (detect_field_duplicates): Use DECL_CHAIN insted of TREE_CHAIN. * c-decl.c (detect_field_duplicates): Use DECL_CHAIN insted of TREE_CHAIN. * c-typeck.c (push_init_level): Likewise. (process_init_element): Likewise. From-SVN: r162239 --- gcc/ChangeLog | 7 +++++++ gcc/c-decl.c | 3 +-- gcc/c-typeck.c | 6 +++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1ef39edf188..268e2f37917 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2010-07-15 Nathan Froyd + + * c-decl.c (detect_field_duplicates): Use DECL_CHAIN insted of + TREE_CHAIN. + * c-typeck.c (push_init_level): Likewise. + (process_init_element): Likewise. + 2010-07-15 Anatoly Sokolov * tree.h (enum tree_index): Add TI_INTEGER_THREE. diff --git a/gcc/c-decl.c b/gcc/c-decl.c index cd56513a66b..010421c0b89 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6705,8 +6705,7 @@ detect_field_duplicates (tree fieldlist) the nested traversal thing. */ if (timeout > 0) { - for (x = TREE_CHAIN (fieldlist); x ; - x = TREE_CHAIN (x)) + for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x)) if (DECL_NAME (x)) { for (y = fieldlist; y != x; y = TREE_CHAIN (y)) diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index bcbc2968d98..164cda8d54e 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -6683,7 +6683,7 @@ push_init_level (int implicit, struct obstack * braced_init_obstack) /* Skip any nameless bit fields at the beginning. */ while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields) && DECL_NAME (constructor_fields) == 0) - constructor_fields = TREE_CHAIN (constructor_fields); + constructor_fields = DECL_CHAIN (constructor_fields); constructor_unfilled_fields = constructor_fields; constructor_bit_index = bitsize_zero_node; @@ -8014,7 +8014,7 @@ process_init_element (struct c_expr value, bool implicit, if (fieldcode == ARRAY_TYPE && !require_constant_value && TYPE_SIZE (fieldtype) == NULL_TREE - && TREE_CHAIN (constructor_fields) == NULL_TREE) + && DECL_CHAIN (constructor_fields) == NULL_TREE) { error_init ("non-static initialization of a flexible array member"); break; @@ -8144,7 +8144,7 @@ process_init_element (struct c_expr value, bool implicit, directly output as a constructor. */ { constructor_bit_index = DECL_SIZE (constructor_fields); - constructor_unfilled_fields = TREE_CHAIN (constructor_fields); + constructor_unfilled_fields = DECL_CHAIN (constructor_fields); } constructor_fields = 0;