[ARC] Remove duplicate ARC600 entry
authorAnton Kolesov <Anton.Kolesov@synopsys.com>
Fri, 17 Mar 2017 13:43:31 +0000 (16:43 +0300)
committerAnton Kolesov <Anton.Kolesov@synopsys.com>
Tue, 30 May 2017 13:50:11 +0000 (16:50 +0300)
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.

bfd/ChangeLog
bfd/cpu-arc.c

index 8b113a01cf219759d9ed9564bebdb113e769bc95..1778a7ab1b454055dcb03060a8da7a4ea1120d9e 100644 (file)
@@ -1,3 +1,7 @@
+2017-05-30  Anton Kolesov  <anton.kolesov@synopsys.com>
+
+       * cpu-arc.c (arch_info_struct): Remove duplicate ARC600 entry.
+
 2017-05-30  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR binutils/21519
index 807112ee9619458aa0304b86f1fed634471b533a..83648f10946d1594bb45fb85cdf744a427d7fbfe 100644 (file)
 
 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),
 };
 
This page took 0.028607 seconds and 4 git commands to generate.