mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
Add support for v850E2 and v850E2V3
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2010-07-23 Naveen.H.S <naveen.S@kpitcummins.com>
|
||||
Ina Pandit <ina.pandit@kpitcummins.com>
|
||||
|
||||
* binutils/readelf.c: Add support for V850E2 and V850E2V3.
|
||||
|
||||
2010-07-22 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* readelf.c: Add Moxie support.
|
||||
|
@ -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");
|
||||
|
Reference in New Issue
Block a user