Commit 90c10ed8 by Jeff Law

* pa.c (compute_frame_size): Always align stack to 64 byte boundary.

From-SVN: r5209
parent 1c7e67ca
......@@ -1995,7 +1995,7 @@ compute_frame_size (size, fregs_live)
fsize += current_function_outgoing_args_size;
if (! leaf_function_p () || fsize)
fsize += 32;
return TARGET_SNAKE ? (fsize + 63 & ~63) : fsize;
return fsize + 63 & ~63;
}
rtx hp_profile_label_rtx;
......
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