diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 18:58:54 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 18:58:54 -0800 |
commit | 8eef5f77c5338215aae8b5722885ff1ef9f4f446 (patch) | |
tree | ab7a238b774af60f55706f53f2318f687b9a2bcd /gcc | |
parent | 49e8699bf9e34f8d76744ecd8933fe9dcd241d18 (diff) | |
download | gcc-8eef5f77c5338215aae8b5722885ff1ef9f4f446.zip gcc-8eef5f77c5338215aae8b5722885ff1ef9f4f446.tar.gz gcc-8eef5f77c5338215aae8b5722885ff1ef9f4f446.tar.bz2 |
(emit_library_call): Pass NULL_TREE to INIT_CUMULATIVE_ARGS.
From-SVN: r3106
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1977,7 +1977,7 @@ emit_library_call (va_alist) argvec = (struct arg *) alloca (nargs * sizeof (struct arg)); - INIT_CUMULATIVE_ARGS (args_so_far, (tree)0, fun); + INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun); args_size.constant = 0; args_size.var = 0; |