diff options
author | Nick Clifton <nickc@redhat.com> | 2000-09-14 01:47:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-09-14 01:47:38 +0000 |
commit | d4ba2db903fc07f51ec7a449e2fd9d8cff52fdf7 (patch) | |
tree | 002cdeb15bda6b943a2557f0da2dd4d78f3481db /bfd/cpu-mips.c | |
parent | 38b3a51e760c515456da4860a7f0e1bfc39d674f (diff) | |
download | gdb-d4ba2db903fc07f51ec7a449e2fd9d8cff52fdf7.tar.gz |
Add support for the MIPS32
Diffstat (limited to 'bfd/cpu-mips.c')
-rw-r--r-- | bfd/cpu-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/cpu-mips.c b/bfd/cpu-mips.c index c52fbecf54d..8090b7c54ea 100644 --- a/bfd/cpu-mips.c +++ b/bfd/cpu-mips.c @@ -53,6 +53,7 @@ I_mips5000, I_mips6000, I_mips8000, I_mips10000, +I_mips4K, I_mips16 }; @@ -75,8 +76,7 @@ static const bfd_arch_info_type arch_info_struct[] = N (32, 32, bfd_mach_mips6000, "mips:6000", false, NN(I_mips6000)), N (64, 64, bfd_mach_mips8000, "mips:8000", false, NN(I_mips8000)), N (64, 64, bfd_mach_mips10000, "mips:10000", false, NN(I_mips10000)), - - + N (32, 32, bfd_mach_mips4K, "mips:4K", false, NN(I_mips4K)), N (64, 64, bfd_mach_mips16, "mips:16", false, 0), }; |