diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/aarch64.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2e84084..4132bfe 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * elf/aarch64.h (DT_AARCH64_VARIANT_PCS): Define. + (STO_AARCH64_VARIANT_PCS): Define. + 2019-05-24 Alan Modra <amodra@gmail.com> * elf/ppc64.h (R_PPC64_PLTSEQ_NOTOC, R_PPC64_PLTCALL_NOTOC), diff --git a/include/elf/aarch64.h b/include/elf/aarch64.h index 4466547..721378a 100644 --- a/include/elf/aarch64.h +++ b/include/elf/aarch64.h @@ -38,6 +38,11 @@ /* Processor specific dynamic array tags. */ #define DT_AARCH64_BTI_PLT (DT_LOPROC + 1) #define DT_AARCH64_PAC_PLT (DT_LOPROC + 3) +#define DT_AARCH64_VARIANT_PCS (DT_LOPROC + 5) + +/* AArch64-specific values for st_other. */ +#define STO_AARCH64_VARIANT_PCS 0x80 /* Symbol may follow different call + convention from the base PCS. */ /* Relocation types. */ |