From d11dd4f3b739ecec71e2b1ca7bb66d9f918dcdb9 Mon Sep 17 00:00:00 2001 From: amodra Date: Mon, 7 May 2001 01:50:52 +0000 Subject: [PATCH] * 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 --- gcc/ChangeLog | 4 ++++ gcc/config/pa/pa.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 194bcc4..11c7b00 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-05-07 Alan Modra + + * pa.c (compute_frame_size): 64-bit frame marker is 16 bytes. + 2001-05-06 Alexandre Oliva * unroll.c (loop_iterations): Don't sign-extend abs_diff; 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); } -- 2.7.4