X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=opcodes%2Fip2k-desc.c;h=75f236384eae61db267aace148e0f87ea04dd98c;hb=cd3ea7c69acc5045eb28f9bf80d923116e15e4f5;hp=1f45fa0b4624f3d241319097f9367948803eca16;hpb=2571583aed598dd3f9651b53434e5f177a0e3cf7;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/ip2k-desc.c b/opcodes/ip2k-desc.c index 1f45fa0b46..75f236384e 100644 --- a/opcodes/ip2k-desc.c +++ b/opcodes/ip2k-desc.c @@ -862,7 +862,7 @@ lookup_mach_via_bfd_name (const CGEN_MACH *table, const char *name) return table; ++table; } - abort (); + return NULL; } /* Subroutine of ip2k_cgen_cpu_open to build the hardware table. */ @@ -1076,7 +1076,8 @@ ip2k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) const CGEN_MACH *mach = lookup_mach_via_bfd_name (ip2k_cgen_mach_table, name); - machs |= 1 << mach->num; + if (mach != NULL) + machs |= 1 << mach->num; break; } case CGEN_CPU_OPEN_ENDIAN :