diff options
Diffstat (limited to 'gcc/gimplify.c')
| -rw-r--r-- | gcc/gimplify.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 41ca3b3bbb2..a4ff3d23a2c 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -2533,6 +2533,17 @@ zero_sized_field_decl (tree fdecl) return false; } +/* Return true if TYPE is zero sized. */ + +static bool +zero_sized_type (tree type) +{ + if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type) + && integer_zerop (TYPE_SIZE (type))) + return true; + return false; +} + /* A subroutine of gimplify_init_constructor. Generate individual MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the @@ -2949,6 +2960,12 @@ gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p, tree *post_p, bool want_value) { enum gimplify_status ret = GS_OK; + tree type = TREE_TYPE (*from_p); + if (zero_sized_type (type)) + { + *expr_p = NULL_TREE; + return GS_ALL_DONE; + } while (ret != GS_UNHANDLED) switch (TREE_CODE (*from_p)) |

