diff options
author | Nick Clifton <nickc@redhat.com> | 1998-06-09 16:36:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-06-09 16:36:31 +0000 |
commit | 4e707af32c63818b98b9ce046d19cd8bf608f81f (patch) | |
tree | 22d7ceb9388d8a4ae795bbe3ed4ac0474e3dab9a /include | |
parent | e03a97575f96ec932ac3b36c480e2f442398f3bf (diff) | |
download | gdb-4e707af32c63818b98b9ce046d19cd8bf608f81f.zip gdb-4e707af32c63818b98b9ce046d19cd8bf608f81f.tar.gz gdb-4e707af32c63818b98b9ce046d19cd8bf608f81f.tar.bz2 |
Add definition of EM_ARM
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 15 |
2 files changed, 12 insertions, 7 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index d1897d8..40b6680 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +Tue Jun 9 09:35:29 1998 Nick Clifton <nickc@cygnus.com> + + * common.h (EM_ARM): Add this constant. + start-sanitize-sky Wed Jun 3 10:29:47 1998 Doug Evans <devans@canuck.cygnus.com> diff --git a/include/elf/common.h b/include/elf/common.h index 6d61c9e..89261b3 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -82,16 +82,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define EM_MIPS_RS4_BE 10 /* MIPS R4000 big-endian */ -#define EM_SPARC64 11 /* SPARC v9 (not official) 64-bit */ - #define EM_PARISC 15 /* HPPA */ #define EM_SPARC32PLUS 18 /* Sun's "v8plus" */ #define EM_PPC 20 /* PowerPC */ +#define EM_ARM 40 /* ARM */ + #define EM_SH 42 /* Hitachi SH */ +#define EM_SPARCV9 43 /* SPARC v9 64-bit */ + /* If it is necessary to assign new unofficial EM_* values, please pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the chances of collision with official or non-GNU unofficial values. @@ -103,6 +105,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Cygnus PowerPC ELF backend. Written in the absence of an ABI. */ #define EM_CYGNUS_POWERPC 0x9025 +/* Old version of Sparc v9, from before the ABI; this should be + removed shortly. */ +#define EM_OLD_SPARCV9 11 + /* Old version of PowerPC, this should be removed shortly. */ #define EM_PPC_OLD 17 @@ -131,11 +137,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define EM_CYGNUS_MN10200 0xdead #define EM_CYGNUS_MN10300 0xbeef -/* start-sanitize-sky */ -/* TXVU backend magic number. Written in the absence of an ABI. */ -#define EM_CYGNUS_TXVU 0xedac -/* end-sanitize-sky */ - /* See the above comment before you add a new EM_* value here. */ /* Values for e_version */ |