diff options
author | Alan Modra <amodra@gmail.com> | 2008-03-11 23:21:08 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-03-11 23:21:08 +0000 |
commit | 1bce5d2cc6fc0433d2c2ad7a1ae39d72a9825eeb (patch) | |
tree | 4230b2925bd2b845aa72caa114c664efb16c48bf /include/elf/mips.h | |
parent | 48a4134bfd676353883789d546b9ffea11f5ae11 (diff) | |
download | gdb-1bce5d2cc6fc0433d2c2ad7a1ae39d72a9825eeb.zip gdb-1bce5d2cc6fc0433d2c2ad7a1ae39d72a9825eeb.tar.gz gdb-1bce5d2cc6fc0433d2c2ad7a1ae39d72a9825eeb.tar.bz2 |
* elf/cr16c.h (SHN_CR16C_FCOMMON): Define using SHN_LORESERVE.
(SHN_CR16C_NCOMMON): Likewise.
* elf/hppa.h (SHN_PARISC_ANSI_COMMON): Likewise.
(SHN_PARISC_HUGE_COMMON): Likewise.
* elf/ia64.h (SHN_IA_64_ANSI_COMMON): Likewise.
(SHN_IA_64_VMS_SYMVEC): Define using SHN_LOOS.
* elf/m32r.h (SHN_M32R_SCOMMON): Define using SHN_LORESERVE.
* elf/mips.h (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT): Likewise.
(SHN_MIPS_DATA, SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
* elf/score.h (SHN_SCORE_TEXT, SHN_SCORE_DATA): Likewise.
(SHN_SCORE_SCOMMON): Likewise.
* elf/sparc.h (SHN_BEFORE, SHN_AFTER): Likewise.
* elf/v850.h (SHN_V850_SCOMMON, SHN_V850_TCOMMON): Likewise.
(SHN_V850_ZCOMMON): Likewise.
* elf/x86-64.h (SHN_X86_64_LCOMMON): Likewise.
Diffstat (limited to 'include/elf/mips.h')
-rw-r--r-- | include/elf/mips.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/elf/mips.h b/include/elf/mips.h index 7b72cac..55ecfb3 100644 --- a/include/elf/mips.h +++ b/include/elf/mips.h @@ -226,21 +226,21 @@ END_RELOC_NUMBERS (R_MIPS_maxext) /* Defined and allocated common symbol. Value is virtual address. If relocated, alignment must be preserved. */ -#define SHN_MIPS_ACOMMON 0xff00 +#define SHN_MIPS_ACOMMON SHN_LORESERVE /* Defined and allocated text symbol. Value is virtual address. Occur in the dynamic symbol table of Alpha OSF/1 and Irix 5 executables. */ -#define SHN_MIPS_TEXT 0xff01 +#define SHN_MIPS_TEXT (SHN_LORESERVE + 1) /* Defined and allocated data symbol. Value is virtual address. Occur in the dynamic symbol table of Alpha OSF/1 and Irix 5 executables. */ -#define SHN_MIPS_DATA 0xff02 +#define SHN_MIPS_DATA (SHN_LORESERVE + 2) /* Small common symbol. */ -#define SHN_MIPS_SCOMMON 0xff03 +#define SHN_MIPS_SCOMMON (SHN_LORESERVE + 3) /* Small undefined symbol. */ -#define SHN_MIPS_SUNDEFINED 0xff04 +#define SHN_MIPS_SUNDEFINED (SHN_LORESERVE + 4) /* Processor specific section types. */ |