From: Jeff Law Date: Tue, 24 Aug 1993 20:40:02 +0000 (-0600) Subject: * pa.c (compute_frame_size): Always align stack to 64 byte boundary. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=90c10ed896bd1c83fa4066f9137cb3b2650d4ee9;p=gcc.git * pa.c (compute_frame_size): Always align stack to 64 byte boundary. From-SVN: r5209 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 8b7cdfe27c6..1f6611dc181 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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;