From 1cd986c58543909402a33d84b7821d0d7be17005 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 23 Jul 2010 14:52:54 +0000 Subject: Add support for v850E2 and v850E2V3 --- binutils/readelf.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'binutils/readelf.c') diff --git a/binutils/readelf.c b/binutils/readelf.c index fd81d2d..c2bb10d 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2352,8 +2352,14 @@ 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"); + case E_V850E2V3_ARCH: + strcat (buf, ", v850e2v3"); + break; + case E_V850E2_ARCH: + strcat (buf, ", v850e2"); + break; + case E_V850E1_ARCH: + strcat (buf, ", v850e1"); break; case E_V850E_ARCH: strcat (buf, ", v850e"); -- cgit v1.1