* pa.c (compute_frame_size): Always align stack to 64 byte boundary.
authorJeff Law <law@gcc.gnu.org>
Tue, 24 Aug 1993 20:40:02 +0000 (14:40 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 24 Aug 1993 20:40:02 +0000 (14:40 -0600)
From-SVN: r5209

gcc/config/pa/pa.c

index 8b7cdfe..1f6611d 100644 (file)
@@ -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;