diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-09-02 08:25:06 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2004-09-02 08:25:06 +0000 |
commit | ec2dfb421058c199bb2ba35368e9cc5f2c3e2284 (patch) | |
tree | 273021c6a744e4e68fc15c944cc7fabf6c2ad184 /binutils/readelf.c | |
parent | f5396bbed40e016355284c4468cb19dab75eb889 (diff) | |
download | gdb-ec2dfb421058c199bb2ba35368e9cc5f2c3e2284.zip gdb-ec2dfb421058c199bb2ba35368e9cc5f2c3e2284.tar.gz gdb-ec2dfb421058c199bb2ba35368e9cc5f2c3e2284.tar.bz2 |
* MAINTAINERS: Add self as co-maintainer of FR-V.
* readelf.c (get_machine_flags): Print FR-V cpu types.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index eb9b4511..bf84093 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1872,6 +1872,46 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) decode_ARM_machine_flags (e_flags, buf); break; + case EM_CYGNUS_FRV: + switch (e_flags & EF_FRV_CPU_MASK) + { + case EF_FRV_CPU_GENERIC: + break; + + default: + strcat (buf, ", fr???"); + break; + + case EF_FRV_CPU_FR300: + strcat (buf, ", fr300"); + break; + + case EF_FRV_CPU_FR400: + strcat (buf, ", fr400"); + break; + case EF_FRV_CPU_FR405: + strcat (buf, ", fr405"); + break; + + case EF_FRV_CPU_FR450: + strcat (buf, ", fr450"); + break; + + case EF_FRV_CPU_FR500: + strcat (buf, ", fr500"); + break; + case EF_FRV_CPU_FR550: + strcat (buf, ", fr550"); + break; + + case EF_FRV_CPU_SIMPLE: + strcat (buf, ", simple"); + break; + case EF_FRV_CPU_TOMCAT: + strcat (buf, ", tomcat"); + break; + } + case EM_68K: if (e_flags & EF_CPU32) strcat (buf, ", cpu32"); |