aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorAlan Modra <amodra@one.net.au>2001-05-07 01:50:52 +0000
committerAlan Modra <amodra@gcc.gnu.org>2001-05-07 11:20:52 +0930
commitff5a340ad5ccffb8c843a3f6e7632b22461dab16 (patch)
treed6784272d7347d91a2546b5088810c5a60ac61e2 /gcc/config
parentb8ebd779d58b4d16199b2b1fe70e37e4c3d38571 (diff)
downloadgcc-ff5a340ad5ccffb8c843a3f6e7632b22461dab16.zip
gcc-ff5a340ad5ccffb8c843a3f6e7632b22461dab16.tar.gz
gcc-ff5a340ad5ccffb8c843a3f6e7632b22461dab16.tar.bz2
* pa.c (compute_frame_size): 64-bit frame marker is 16 bytes.
From-SVN: r41887
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 cc8f136..2b7b17d 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);
}