aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorJason Merrill <jason@casey.cygnus.com>2000-03-02 23:50:11 +0000
committerJason Merrill <jason@gcc.gnu.org>2000-03-02 18:50:11 -0500
commitc2732da3bbdf6c723f562783fe383649f3f133e9 (patch)
treef69a6f6136385e1d2c8f5c79cf8274209b73b798 /gcc/expr.c
parent16214ee327ce67a984cb98816fb1230ccca232ac (diff)
downloadgcc-c2732da3bbdf6c723f562783fe383649f3f133e9.zip
gcc-c2732da3bbdf6c723f562783fe383649f3f133e9.tar.gz
gcc-c2732da3bbdf6c723f562783fe383649f3f133e9.tar.bz2
function.h (struct expr_status): Add x_arg_space_so_far.
* function.h (struct expr_status): Add x_arg_space_so_far. (arg_space_so_far): New macro. * expr.c (init_expr): Initialize it. * calls.c (emit_call_1): Reset it. (compute_argument_block_size, expand_call): Use it. (expand_call, store_one_arg): Increment it. From-SVN: r32296
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 4d777f9..b0d1e07 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -288,6 +288,7 @@ init_expr ()
pending_chain = 0;
pending_stack_adjust = 0;
+ arg_space_so_far = 0;
inhibit_defer_pop = 0;
saveregs_value = 0;
apply_args_value = 0;