Commit ff5a340a by Alan Modra Committed by Alan Modra

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

From-SVN: r41887
parent b8ebd779
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;
......
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment