diff options
author | Anton Kolesov <Anton.Kolesov@synopsys.com> | 2017-03-17 16:43:31 +0300 |
---|---|---|
committer | Anton Kolesov <Anton.Kolesov@synopsys.com> | 2017-05-30 16:50:11 +0300 |
commit | 37cd38778dfb73d28e533fd1ddabb88b4b3a5771 (patch) | |
tree | 288629468bff8bae76ff60bde41b15abc844b231 /bfd/cpu-arc.c | |
parent | 8e2f54bcee7e3e8315d4a39a302eaf8e4389e07d (diff) | |
download | gdb-37cd38778dfb73d28e533fd1ddabb88b4b3a5771.zip gdb-37cd38778dfb73d28e533fd1ddabb88b4b3a5771.tar.gz gdb-37cd38778dfb73d28e533fd1ddabb88b4b3a5771.tar.bz2 |
[ARC] Remove duplicate ARC600 entry
ARC600 is already defined as the head of the bfd_arch_arc.
bfd/ChangeLog:
yyyy-mm-dd Anton Kolesov <anton.kolesov@synopsys.com>
* cpu-arc.c (arch_info_struct): Remove duplicate ARC600 entry.
Diffstat (limited to 'bfd/cpu-arc.c')
-rw-r--r-- | bfd/cpu-arc.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bfd/cpu-arc.c b/bfd/cpu-arc.c index 807112e..83648f1 100644 --- a/bfd/cpu-arc.c +++ b/bfd/cpu-arc.c @@ -42,13 +42,12 @@ static const bfd_arch_info_type arch_info_struct[] = { - ARC (bfd_mach_arc_arc600, "ARC600", FALSE, &arch_info_struct[1]), - ARC (bfd_mach_arc_arc600, "A6" , FALSE, &arch_info_struct[2]), - ARC (bfd_mach_arc_arc601, "ARC601", FALSE, &arch_info_struct[3]), - ARC (bfd_mach_arc_arc700, "ARC700", FALSE, &arch_info_struct[4]), - ARC (bfd_mach_arc_arc700, "A7", FALSE, &arch_info_struct[5]), - ARC (bfd_mach_arc_arcv2, "ARCv2", FALSE, &arch_info_struct[6]), - ARC (bfd_mach_arc_arcv2, "EM", FALSE, &arch_info_struct[7]), + ARC (bfd_mach_arc_arc600, "A6" , FALSE, &arch_info_struct[1]), + ARC (bfd_mach_arc_arc601, "ARC601", FALSE, &arch_info_struct[2]), + ARC (bfd_mach_arc_arc700, "ARC700", FALSE, &arch_info_struct[3]), + ARC (bfd_mach_arc_arc700, "A7", FALSE, &arch_info_struct[4]), + ARC (bfd_mach_arc_arcv2, "ARCv2", FALSE, &arch_info_struct[5]), + ARC (bfd_mach_arc_arcv2, "EM", FALSE, &arch_info_struct[6]), ARC (bfd_mach_arc_arcv2, "HS", FALSE, NULL), }; |