diff options
author | Nick Clifton <nickc@redhat.com> | 2003-02-10 10:44:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-02-10 10:44:47 +0000 |
commit | 82568df04425bf41a06be0fc23c34c966c8d353b (patch) | |
tree | a8031d8042b13e6e886bbfc42bfaa406afd2a701 /bfd/cpu-arm.c | |
parent | d51e124894ba9a18f82ee8bc3486baeb43c3550e (diff) | |
download | gdb-960396d6dc0adb77e681e1073259529103e467c2.tar.gz |
Add support for marking ARM ELF binaries as support the Cirrus EP9312 Maverickw32api-2_2
floating point co-processor.
Diffstat (limited to 'bfd/cpu-arm.c')
-rw-r--r-- | bfd/cpu-arm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bfd/cpu-arm.c b/bfd/cpu-arm.c index cd4bf14eaa8..923c2500afe 100644 --- a/bfd/cpu-arm.c +++ b/bfd/cpu-arm.c @@ -95,7 +95,8 @@ processors[] = { bfd_mach_arm_4, "strongarm"}, { bfd_mach_arm_4, "strongarm110" }, { bfd_mach_arm_4, "strongarm1100" }, - { bfd_mach_arm_XScale, "xscale" } + { bfd_mach_arm_XScale, "xscale" }, + { bfd_mach_arm_ep9312, "ep9312" } }; static bfd_boolean @@ -140,7 +141,8 @@ static const bfd_arch_info_type arch_info_struct[] = N (bfd_mach_arm_5, "armv5", FALSE, & arch_info_struct[7]), N (bfd_mach_arm_5T, "armv5t", FALSE, & arch_info_struct[8]), N (bfd_mach_arm_5TE, "armv5te", FALSE, & arch_info_struct[9]), - N (bfd_mach_arm_XScale, "xscale", FALSE, NULL) + N (bfd_mach_arm_XScale, "xscale", FALSE, & arch_info_struct[10]), + N (bfd_mach_arm_ep9312, "ep9312", FALSE, NULL) }; const bfd_arch_info_type bfd_arm_arch = |