2001-08-31 Eric Christopher <echristo@redhat.com>
Jason Eckhardt <jle@redhat.com> * mips-dis.c: Add support for bfd_mach_mipsisa32 and bfd_mach_mipsisa64. Remove bfd_mach_mips32, bfd_mach_mips32_4k, bfd_mach_mips64.
This commit is contained in:
parent
3c02b2abd6
commit
0823fbcae4
4 changed files with 25 additions and 18 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-08-31 Eric Christopher <echristo@redhat.com>
|
||||
|
||||
* readelf.c (get_machine_flags): Remove E_MIPS_MACH_MIPS32_4K.
|
||||
|
||||
2001-08-29 Peter Targett <peter.targett@arccores.com>
|
||||
|
||||
* MAINTAINERS: Include ARC Maintainer.
|
||||
|
|
|
@ -1639,7 +1639,6 @@ get_machine_flags (e_flags, e_machine)
|
|||
case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
|
||||
case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
|
||||
case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
|
||||
case E_MIPS_MACH_MIPS32_4K: strcat (buf, ", mips32-4k"); break;
|
||||
case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
|
||||
default: strcat (buf, " UNKNOWN"); break;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2001-08-31 Eric Christopher <echristo@redhat.com>
|
||||
Jason Eckhardt <jle@redhat.com>
|
||||
|
||||
* mips-dis.c: Add support for bfd_mach_mipsisa32 and
|
||||
bfd_mach_mipsisa64. Remove bfd_mach_mips32, bfd_mach_mips32_4k,
|
||||
bfd_mach_mips64.
|
||||
|
||||
2001-08-31 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* tic54x-opc.c: Add default initializers to avoid warnings.
|
||||
|
|
|
@ -369,26 +369,23 @@ mips_isa_type (mach, isa, cputype)
|
|||
*cputype = CPU_MIPS16;
|
||||
*isa = ISA_MIPS3;
|
||||
break;
|
||||
case bfd_mach_mips32:
|
||||
*cputype = CPU_MIPS32;
|
||||
*isa = ISA_MIPS32;
|
||||
break;
|
||||
case bfd_mach_mips32_4k:
|
||||
*cputype = CPU_MIPS32_4K;
|
||||
*isa = ISA_MIPS32;
|
||||
break;
|
||||
case bfd_mach_mips5:
|
||||
*cputype = CPU_MIPS5;
|
||||
*isa = ISA_MIPS5;
|
||||
break;
|
||||
case bfd_mach_mips64:
|
||||
*cputype = CPU_MIPS64;
|
||||
*isa = ISA_MIPS64;
|
||||
break;
|
||||
case bfd_mach_mips_sb1:
|
||||
*cputype = CPU_SB1;
|
||||
*isa = ISA_MIPS64;
|
||||
break;
|
||||
case bfd_mach_mipsisa32:
|
||||
* cputype = CPU_MIPS32;
|
||||
* isa = ISA_MIPS32;
|
||||
break;
|
||||
case bfd_mach_mipsisa64:
|
||||
* cputype = CPU_MIPS64;
|
||||
* isa = ISA_MIPS64;
|
||||
break;
|
||||
|
||||
default:
|
||||
*cputype = CPU_R3000;
|
||||
*isa = ISA_MIPS3;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue