diff options
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 76ce7ab..b01e9e7 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -2972,6 +2972,7 @@ push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack, if (TREE_CODE (field) == FIELD_DECL) { bool push = false; + int pushed = 0; if (has_union && (TREE_CODE (TREE_TYPE (field)) == QUAL_UNION_TYPE @@ -2980,7 +2981,7 @@ push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack, if (!var_can_have_subvars (field)) push = true; - else if (!(push_fields_onto_fieldstack + else if (!(pushed = push_fields_onto_fieldstack (TREE_TYPE (field), fieldstack, offset + bitpos_of_field (field), has_union)) && DECL_SIZE (field) @@ -2999,6 +3000,8 @@ push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack, pair->offset = offset + bitpos_of_field (field); count++; } + else + count += pushed; } return count; |