diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-08-24 14:40:02 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-08-24 14:40:02 -0600 |
commit | 90c10ed896bd1c83fa4066f9137cb3b2650d4ee9 (patch) | |
tree | 2c26c8d33bb84bafbbffc65bf41d43384a647c90 | |
parent | 1c7e67ca6425399306445a2987918af61bd5ae0f (diff) | |
download | gcc-90c10ed896bd1c83fa4066f9137cb3b2650d4ee9.zip gcc-90c10ed896bd1c83fa4066f9137cb3b2650d4ee9.tar.gz gcc-90c10ed896bd1c83fa4066f9137cb3b2650d4ee9.tar.bz2 |
* pa.c (compute_frame_size): Always align stack to 64 byte boundary.
From-SVN: r5209
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 8b7cdfe..1f6611d 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; |