diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-06 11:01:20 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-06 11:01:20 +0000 |
commit | 73234d0fca952b2d6cc0f11939c32c610a11160d (patch) | |
tree | 93e5f24b190f98a22df838b2374ff442d70b42a1 /gcc/ada/misc.c | |
parent | ba81d398506cb62a137ebe3ee7adf70dedea06bc (diff) | |
download | gcc-73234d0fca952b2d6cc0f11939c32c610a11160d.tar.gz |
* misc.c (default_pass_by_ref): Update INIT_CUMULATIVE_ARGS call.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77391 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/misc.c')
-rw-r--r-- | gcc/ada/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index 7554a127e5e..7e544fb1fda 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -864,7 +864,7 @@ default_pass_by_ref (tree gnu_type) { CUMULATIVE_ARGS cum; - INIT_CUMULATIVE_ARGS (cum, NULL_TREE, NULL_RTX, 0); + INIT_CUMULATIVE_ARGS (cum, NULL_TREE, NULL_RTX, 0, 2); /* We pass aggregates by reference if they are sufficiently large. The choice of constant here is somewhat arbitrary. We also pass by |