AArch64: Align ENTRY to a cacheline

Given almost all uses of ENTRY are for string/memory functions,
align ENTRY to a cacheline to simplify things.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
Wilco Dijkstra 2020-07-15 16:50:02 +01:00
parent f896fc0f2b
commit 34f0d01d5e
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ GNU_PROPERTY (FEATURE_1_AND, FEATURE_1_BTI)
#define ENTRY(name) \
.globl C_SYMBOL_NAME(name); \
.type C_SYMBOL_NAME(name),%function; \
.align 4; \
.p2align 6; \
C_LABEL(name) \
cfi_startproc; \
BTI_C; \