Regen cgen files
[deliverable/binutils-gdb.git] / opcodes / m32c-desc.c
index 596f2c164caacf59aae3274b44abec922ca6b7f3..54e2912d5d5dff10bc5b9a1fa03e5d43a290aedf 100644 (file)
@@ -62880,7 +62880,7 @@ lookup_mach_via_bfd_name (const CGEN_MACH *table, const char *name)
        return table;
       ++table;
     }
-  abort ();
+  return NULL;
 }
 
 /* Subroutine of m32c_cgen_cpu_open to build the hardware table.  */
@@ -63094,7 +63094,8 @@ m32c_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...)
            const CGEN_MACH *mach =
              lookup_mach_via_bfd_name (m32c_cgen_mach_table, name);
 
-           machs |= 1 << mach->num;
+           if (mach != NULL)
+             machs |= 1 << mach->num;
            break;
          }
        case CGEN_CPU_OPEN_ENDIAN :
This page took 0.045076 seconds and 4 git commands to generate.