* function.c (TRAMPOLINE_ALIGNMENT): Always defined.
authorNeil Booth <neil@daikokuya.co.uk>
Tue, 6 Aug 2002 20:39:41 +0000 (20:39 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Tue, 6 Aug 2002 20:39:41 +0000 (20:39 +0000)
From-SVN: r56078

gcc/ChangeLog
gcc/function.c

index e0356589b87f939464529ec28edd0e182a534114..f833f2a8cd322d2c0e53642cf19f3bd9252d982b 100644 (file)
@@ -1,3 +1,7 @@
+2002-08-06  Neil Booth  <neil@daikokuya.co.uk>
+
+       * function.c (TRAMPOLINE_ALIGNMENT): Always defined.
+
 2002-08-06  Neil Booth  <neil@daikokuya.co.uk>
 
        * cppinit.c (struct lang_flags): Rename trigraphs std.
index 47fa24de05a56ff66a93bd3d3643af90dadf8b1d..5d5300192fedbb8d1f951106bcaa141926390bf6 100644 (file)
@@ -5697,12 +5697,8 @@ trampoline_address (function)
 #else
   /* If rounding needed, allocate extra space
      to ensure we have TRAMPOLINE_SIZE bytes left after rounding up.  */
-#ifdef TRAMPOLINE_ALIGNMENT
 #define TRAMPOLINE_REAL_SIZE \
   (TRAMPOLINE_SIZE + (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT) - 1)
-#else
-#define TRAMPOLINE_REAL_SIZE (TRAMPOLINE_SIZE)
-#endif
   tramp = assign_stack_local_1 (BLKmode, TRAMPOLINE_REAL_SIZE, 0,
                                fp ? fp : cfun);
 #endif
@@ -5737,7 +5733,6 @@ static rtx
 round_trampoline_addr (tramp)
      rtx tramp;
 {
-#ifdef TRAMPOLINE_ALIGNMENT
   /* Round address up to desired boundary.  */
   rtx temp = gen_reg_rtx (Pmode);
   rtx addend = GEN_INT (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT - 1);
@@ -5747,7 +5742,7 @@ round_trampoline_addr (tramp)
                               temp, 0, OPTAB_LIB_WIDEN);
   tramp = expand_simple_binop (Pmode, AND, temp, mask,
                               temp, 0, OPTAB_LIB_WIDEN);
-#endif
+
   return tramp;
 }