diff options
author | Nick Clifton <nickc@redhat.com> | 2006-01-09 17:21:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-01-09 17:21:17 +0000 |
commit | 64fd6348f0aa4d798bafae4b6c0baffb1a777b16 (patch) | |
tree | 1368a7bffd54d97cb24942cec73083ae15bbce4f /binutils/readelf.c | |
parent | 4dcb3903aa6c0c1cfcc88b850c7d91bf4d7d4d97 (diff) | |
download | gdb-64fd6348f0aa4d798bafae4b6c0baffb1a777b16.zip gdb-64fd6348f0aa4d798bafae4b6c0baffb1a777b16.tar.gz gdb-64fd6348f0aa4d798bafae4b6c0baffb1a777b16.tar.bz2 |
Define EM_ALTERA_NIOS2 and EM_NIOS32.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index ff243b9..b432b0b 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1,5 +1,5 @@ /* readelf.c -- display contents of an ELF format file - Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 + Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Originally developed by Eric Youngdale <eric@andante.jic.com> @@ -611,6 +611,8 @@ guess_is_rela (unsigned long e_machine) case EM_M32C: case EM_MT: case EM_BLACKFIN: + case EM_NIOS32: + case EM_ALTERA_NIOS2: return TRUE; case EM_MMA: @@ -1689,6 +1691,8 @@ get_machine_name (unsigned e_machine) case EM_M32C: return "Renesas M32c"; case EM_MT: return "Morpho Techologies MT processor"; case EM_BLACKFIN: return "Analog Devices Blackfin"; + case EM_NIOS32: return "Altera Nios"; + case EM_ALTERA_NIOS2: return "Altera Nios II"; default: snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_machine); return buff; |