diff options
author | Nick Clifton <nickc@redhat.com> | 2003-09-04 11:04:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-09-04 11:04:38 +0000 |
commit | 8ad30312fff34325113307cb27bcae49d220df15 (patch) | |
tree | e36909398f52d213a45a92122028b2c953768369 /binutils | |
parent | 3c9030c1f46b3255af11e975ae6f62713f55d645 (diff) | |
download | gdb-8ad30312fff34325113307cb27bcae49d220df15.zip gdb-8ad30312fff34325113307cb27bcae49d220df15.tar.gz gdb-8ad30312fff34325113307cb27bcae49d220df15.tar.bz2 |
Add binutils support for v850e1 processor
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f863d98..d238572 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2003-09-04 Nick Clifton <nickc@redhat.com> + + * readelf.c (get_machine_flags): Recognise V850E1 machine type. + 2003-09-03 Andrew Cagney <cagney@redhat.com> * objdump.c: Refer to init_disassemble_info in comments. diff --git a/binutils/readelf.c b/binutils/readelf.c index ac1955e..4887a54 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1817,6 +1817,9 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) case EM_CYGNUS_V850: switch (e_flags & EF_V850_ARCH) { + case E_V850E1_ARCH: + strcat (buf, ", v850e1"); + break; case E_V850E_ARCH: strcat (buf, ", v850e"); break; |