diff options
Diffstat (limited to 'opcodes/or1k-desc.c')
-rw-r--r-- | opcodes/or1k-desc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/opcodes/or1k-desc.c b/opcodes/or1k-desc.c index 3a9fdb7..003beb7 100644 --- a/opcodes/or1k-desc.c +++ b/opcodes/or1k-desc.c @@ -1795,7 +1795,7 @@ lookup_mach_via_bfd_name (const CGEN_MACH *table, const char *name) return table; ++table; } - abort (); + return NULL; } /* Subroutine of or1k_cgen_cpu_open to build the hardware table. */ @@ -2009,7 +2009,8 @@ or1k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) const CGEN_MACH *mach = lookup_mach_via_bfd_name (or1k_cgen_mach_table, name); - machs |= 1 << mach->num; + if (mach != NULL) + machs |= 1 << mach->num; break; } case CGEN_CPU_OPEN_ENDIAN : |