diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index b17a597..270389b 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1159,6 +1159,9 @@ setup_one_parameter (inline_data *id, tree p, tree value, tree fn, && (!is_gimple_cast (rhs) || !is_gimple_val (TREE_OPERAND (rhs, 0)))) gimplify_stmt (&init_stmt); + + /* If VAR represents a zero-sized variable, it's possible that the + assignment statment may result in no gimple statements. */ if (init_stmt) bsi_insert_after (&bsi, init_stmt, BSI_NEW_STMT); } |