Commit eb7dd33d by Richard Kenner

(TRAMPOLINE_ALIGNMENT): Specify alignment in bits, not bytes.

From-SVN: r11807
parent 30f5e9f5
...@@ -1035,10 +1035,10 @@ accessed through the data cache. */ ...@@ -1035,10 +1035,10 @@ accessed through the data cache. */
#define TRAMPOLINE_SIZE 18 #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. */ 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. /* Emit RTL insns to initialize the variable parts of a trampoline.
FNADDR is an RTX for the address of the function's pure code. FNADDR is an RTX for the address of the function's pure code.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment