Move the literal pool to the end of asm functions

This keeps the data at the end of a function, near to where it's used.
Sponsored by:	Innovate UK
This commit is contained in:
Andrew Turner 2020-12-23 13:42:09 +00:00
parent edb48ff6e7
commit 449ebf135b

View File

@ -45,7 +45,7 @@
.globl sym; LENTRY(sym)
#define EENTRY(sym) \
.globl sym; sym:
#define LEND(sym) .cfi_endproc; .size sym, . - sym
#define LEND(sym) .ltorg; .cfi_endproc; .size sym, . - sym
#define END(sym) LEND(sym)
#define EEND(sym)