diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-07 13:45:38 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-07 13:45:38 +0000 |
commit | 0405cc0e8d137d6e30eb48cfab5833bafff22393 (patch) | |
tree | 70973eadca21e5bde7cb4528eac6f34cdd9f83bd /gcc/calls.c | |
parent | cd735ab818d1ec16ee650d076801bc0d7ac5d1ec (diff) | |
download | gcc-0405cc0e8d137d6e30eb48cfab5833bafff22393.zip gcc-0405cc0e8d137d6e30eb48cfab5833bafff22393.tar.gz gcc-0405cc0e8d137d6e30eb48cfab5833bafff22393.tar.bz2 |
* calls (stack_arg_under_construction): Make it static.
From-SVN: r96012
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index c84c903..f90e1a5 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -119,7 +119,7 @@ static sbitmap stored_args_map; returns a BLKmode struct) and expand_call must take special action to make sure the object being constructed does not overlap the argument list for the constructor call. */ -int stack_arg_under_construction; +static int stack_arg_under_construction; static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT, HOST_WIDE_INT, rtx, rtx, int, rtx, int, |