* pa.c (compute_frame_size): 64-bit frame marker is 16 bytes.

From-SVN: r41887
This commit is contained in:
Alan Modra 2001-05-07 01:50:52 +00:00 committed by Alan Modra
parent b8ebd779d5
commit ff5a340ad5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-05-07 Alan Modra <amodra@one.net.au>
* pa.c (compute_frame_size): 64-bit frame marker is 16 bytes.
2001-05-06 Alexandre Oliva <aoliva@redhat.com>
* unroll.c (loop_iterations): Don't sign-extend abs_diff;

View file

@ -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);
}