diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 3160ca3..0d33ee7 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -2099,7 +2099,7 @@ copy_bb (copy_body_data *id, basic_block bb, /* Create the new array of arguments. */ n = nargs + gimple_call_num_args (call_stmt); argarray.create (n); - argarray.safe_grow_cleared (n); + argarray.safe_grow_cleared (n, true); /* Copy all the arguments before '...' */ memcpy (argarray.address (), |