From ff5a340ad5ccffb8c843a3f6e7632b22461dab16 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 7 May 2001 01:50:52 +0000 Subject: * pa.c (compute_frame_size): 64-bit frame marker is 16 bytes. From-SVN: r41887 --- gcc/config/pa/pa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/config') 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); } -- cgit v1.1