diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-06-08 04:51:10 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-06-08 04:51:10 +0000 |
commit | b0069a177563e97d76ab70c0e9f70ffe85759876 (patch) | |
tree | 790eec0e61715196f10d6e60d4394dc9ef045b8a /gdb/mips-tdep.c | |
parent | 1ba607adba3816e5352f639a27cffa20ee71813d (diff) | |
download | gdb-b0069a177563e97d76ab70c0e9f70ffe85759876.zip gdb-b0069a177563e97d76ab70c0e9f70ffe85759876.tar.gz gdb-b0069a177563e97d76ab70c0e9f70ffe85759876.tar.bz2 |
Delete MIPS_DEFAULT_FPU from config/mips/*.h
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index cf9ac59..971b04a 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -40,6 +40,14 @@ #include "elf-bfd.h" +/* The sizes of floating point registers. */ + +enum +{ + MIPS_FPU_SINGLE_REGSIZE = 4, + MIPS_FPU_DOUBLE_REGSIZE = 8 +}; + /* All the possible MIPS ABIs. */ enum mips_abi @@ -4030,6 +4038,7 @@ mips_gdbarch_init (info, arches) && info.bfd_arch_info->arch == bfd_arch_mips) switch (info.bfd_arch_info->mach) { + case bfd_mach_mips3900: case bfd_mach_mips4100: case bfd_mach_mips4111: tdep->mips_fpu_type = MIPS_FPU_NONE; |