Home | History | Annotate | Download | only in bfd

Lines Matching refs:em

54   ARC (bfd_mach_arc_arcv2,  "EM",     false, &arch_info_struct[6]),
63 "feature-rich", that is, can run both A and B. ARCv2, EM and HS all has
68 example, compatible (ARCv2, EM) returns ARCv2, but compatible (EM, ARCv2)
69 returns EM, hence GDB is not sure if they are compatible and prints a
75 const bfd_arch_info_type * const em = &arch_info_struct[5];
90 /* ARCv2|EM and EM. */
91 if ((a->mach == bfd_mach_arc_arcv2 && b == em)
92 || (b->mach == bfd_mach_arc_arcv2 && a == em))
93 return em;