diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2012-11-08 18:25:23 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2012-11-08 18:25:23 +0000 |
commit | dbadd7651e4af06d2e9cf3514645037f47a7a408 (patch) | |
tree | d3f7d13d085a7337dfe23ef03503b4ecee4692df /include/elf/mips.h | |
parent | bc1bd5ae3aa52fe72fe134d83b8a1ea5e12779e5 (diff) | |
download | gdb-dbadd7651e4af06d2e9cf3514645037f47a7a408.tar.gz |
* mips.h (EF_MIPS_32BITMODE): Move next to lower-order bits.
Diffstat (limited to 'include/elf/mips.h')
-rw-r--r-- | include/elf/mips.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/elf/mips.h b/include/elf/mips.h index c2c5922dde9..c2f362e7486 100644 --- a/include/elf/mips.h +++ b/include/elf/mips.h @@ -187,6 +187,10 @@ END_RELOC_NUMBERS (R_MIPS_maxext) /* Process the .MIPS.options section first by ld */ #define EF_MIPS_OPTIONS_FIRST 0x00000080 +/* Indicates code compiled for a 64-bit machine in 32-bit mode + (regs are 32-bits wide). */ +#define EF_MIPS_32BITMODE 0x00000100 + /* Architectural Extensions used by this file */ #define EF_MIPS_ARCH_ASE 0x0f000000 @@ -199,10 +203,6 @@ END_RELOC_NUMBERS (R_MIPS_maxext) /* Use MICROMIPS ISA extensions. */ #define EF_MIPS_ARCH_ASE_MICROMIPS 0x02000000 -/* Indicates code compiled for a 64-bit machine in 32-bit mode. - (regs are 32-bits wide.) */ -#define EF_MIPS_32BITMODE 0x00000100 - /* Four bit MIPS architecture field. */ #define EF_MIPS_ARCH 0xf0000000 |