summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authoramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-07 01:50:52 +0000
committeramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-07 01:50:52 +0000
commitd11dd4f3b739ecec71e2b1ca7bb66d9f918dcdb9 (patch)
treed6784272d7347d91a2546b5088810c5a60ac61e2 /gcc/config
parent9c3da43679ff7a148bb3c0f5c3df5ef04aea31e7 (diff)
downloadgcc-d11dd4f3b739ecec71e2b1ca7bb66d9f918dcdb9.tar.gz
* pa.c (compute_frame_size): 64-bit frame marker is 16 bytes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41887 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/pa/pa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c
index cc8f136dd78..2b7b17d8b2e 100644
--- a/gcc/config/pa/pa.c
+++ b/gcc/config/pa/pa.c
@@ -2882,7 +2882,7 @@ compute_frame_size (size, fregs_live)
allocated for any function that makes calls or otherwise allocates
stack space. */
if (!current_function_is_leaf || fsize)
- fsize += 32;
+ fsize += TARGET_64BIT ? 16 : 32;
return (fsize + STACK_BOUNDARY - 1) & ~(STACK_BOUNDARY - 1);
}