aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-04-16 09:06:08 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-04-16 09:06:08 -0400
commiteb7dd33dfeb6dd25d559370c51a5b4bd0180e407 (patch)
treef4fde2593dc86ebfc51be72594162d317532650f
parent30f5e9f517eee66f7b18b804bfedd3e120457e7c (diff)
downloadgcc-eb7dd33dfeb6dd25d559370c51a5b4bd0180e407.zip
gcc-eb7dd33dfeb6dd25d559370c51a5b4bd0180e407.tar.gz
gcc-eb7dd33dfeb6dd25d559370c51a5b4bd0180e407.tar.bz2
(TRAMPOLINE_ALIGNMENT): Specify alignment in bits, not bytes.
From-SVN: r11807
-rw-r--r--gcc/config/m68k/m68k.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h
index 76456d6..8c020be 100644
--- a/gcc/config/m68k/m68k.h
+++ b/gcc/config/m68k/m68k.h
@@ -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.