(emit_library_call_value): Initialize all argvec elements.

From-SVN: r14463
This commit is contained in:
Richard Kenner 1997-07-16 14:34:06 -04:00
parent 1313ec9d8c
commit d3c4e2ab20
1 changed files with 1 additions and 1 deletions

View File

@ -2837,7 +2837,7 @@ emit_library_call_value VPROTO((rtx orgfun, rtx value, int no_queue,
library functions shouldn't have many args. */
argvec = (struct arg *) alloca ((nargs + 1) * sizeof (struct arg));
bzero ((char *) argvec, nargs * sizeof (struct arg));
bzero ((char *) argvec, (nargs + 1) * sizeof (struct arg));
INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun, 0);