diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2016-12-05 20:40:59 +0000 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2016-12-05 20:51:10 +0000 |
| commit | 59391d5520534ef1fe3cc2e96fa567c870e2f533 (patch) | |
| tree | b1382b41c1a41310db148c9939f1792b621332d9 /elf.h | |
| parent | 097cf3aa5ee370bab50d6d15cef9b0af55a1a3a2 (diff) | |
| download | tinycc-59391d5520534ef1fe3cc2e96fa567c870e2f533.tar.gz tinycc-59391d5520534ef1fe3cc2e96fa567c870e2f533.tar.bz2 | |
Fix relocs_info declaration in tcc.h
C standard specifies that array should be declared with a non null size
or with * for standard array. Declaration of relocs_info in tcc.h was
not respecting this rule. This commit add a R_NUM macro that maps to the
R_<ARCH>_NUM macros and declare relocs_info using it. This commit also
moves all linker-related macros from <arch>-gen.c files to <arch>-link.c
ones.
Diffstat (limited to 'elf.h')
| -rw-r--r-- | elf.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2456,6 +2456,8 @@ typedef Elf32_Addr Elf32_Conflict; #define R_AARCH64_TLS_TPREL64 1030 /* TP-relative offset, 64 bit. */ #define R_AARCH64_TLSDESC 1031 /* TLS Descriptor. */ #define R_AARCH64_IRELATIVE 1032 /* STT_GNU_IFUNC relocation. */ +/* Keep this the last entry. */ +#define R_AARCH64_NUM 1033 /* ARM relocs. */ @@ -2547,6 +2549,8 @@ typedef Elf32_Addr Elf32_Conflict; #define R_C60_RELATIVE 8 /* Adjust by program base */ #define R_C60_GOTOFF 9 /* 32 bit offset to GOT */ #define R_C60_GOTPC 10 /* 32 bit PC relative offset to GOT */ +/* Keep this the last entry. */ +#define R_C60_NUM 11 #define R_C60HI16 0x55 /* high 16 bit MVKH embedded */ #define R_C60LO16 0x54 /* low 16 bit MVKL embedded */ @@ -2900,7 +2904,7 @@ typedef Elf32_Addr Elf32_Conflict; #define R_X86_64_REX_GOTPCRELX 42 /* like GOTPCRELX, but a REX prefix is present */ -#define R_X86_64_NUM 39 +#define R_X86_64_NUM 43 /* AM33 relocations. */ |
