+2000-04-20 Alexandre Oliva <aoliva@cygnus.com>
+
+ * config/tc-mn10300.c (HAVE_AM30): Define.
+ (md_assemble): Use it.
+
2000-04-19 Alan Modra <alan@linuxcare.com.au>
* config/obj-elf.c (obj_elf_change_section): Check for changed
};
#define HAVE_AM33 (current_machine == AM33)
+#define HAVE_AM30 (current_machine == AM30)
/* Opcode hash table. */
static struct hash_control *mn10300_hash;
/* If the instruction is not available on the current machine
then it can not possibly match. */
if (opcode->machine
- && !(opcode->machine == AM33 && HAVE_AM33))
+ && !(opcode->machine == AM33 && HAVE_AM33)
+ && !(opcode->machine == AM30 && HAVE_AM30))
goto error;
for (op_idx = 1, opindex_ptr = opcode->operands;