(TRAMPOLINE_ALIGNMENT): Specify alignment in bits, not bytes.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 16 Apr 1996 13:06:08 +0000 (09:06 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 16 Apr 1996 13:06:08 +0000 (09:06 -0400)
From-SVN: r11807

gcc/config/m68k/m68k.h

index 76456d611b6df1e972da75e7c25876525bc389bc..8c020bed2c5ad07c32db2ce02454b24e7936d970 100644 (file)
@@ -1035,10 +1035,10 @@ accessed through the data cache.  */
 
 #define TRAMPOLINE_SIZE 18
 
-/* Alignment required for a trampoline.  16 is used to find the
+/* Alignment required (in *bits*) for a trampoline.  16 is used to find the
    beginning of a line in the instruction cache.  */
 
-#define TRAMPOLINE_ALIGNMENT 16
+#define TRAMPOLINE_ALIGNMENT (16 * BITS_PER_UNIT)
 
 /* Emit RTL insns to initialize the variable parts of a trampoline.
    FNADDR is an RTX for the address of the function's pure code.