From 90c10ed896bd1c83fa4066f9137cb3b2650d4ee9 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 24 Aug 1993 14:40:02 -0600 Subject: [PATCH] * pa.c (compute_frame_size): Always align stack to 64 byte boundary. From-SVN: r5209 --- gcc/config/pa/pa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2