From: Alexandre Oliva Date: Thu, 20 Apr 2000 22:18:36 +0000 (+0000) Subject: * config/tc-mn10300.c (HAVE_AM30): Define. X-Git-Tag: binutils-2_10~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8808d43b42cc54ef1ce3726b1154018d2b655e0;p=thirdparty%2Fbinutils-gdb.git * config/tc-mn10300.c (HAVE_AM30): Define. (md_assemble): Use it. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 68167c4705f..8aa7a7d69f8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-04-20 Alexandre Oliva + + * config/tc-mn10300.c (HAVE_AM30): Define. + (md_assemble): Use it. + 2000-04-19 Alan Modra * Makefile.am: (CPU_MULTI_VALID): Remove. diff --git a/gas/config/tc-mn10300.c b/gas/config/tc-mn10300.c index ae1ea16fe7b..3514f9f1970 100644 --- a/gas/config/tc-mn10300.c +++ b/gas/config/tc-mn10300.c @@ -125,6 +125,7 @@ const pseudo_typeS md_pseudo_table[] = }; #define HAVE_AM33 (current_machine == AM33) +#define HAVE_AM30 (current_machine == AM30) /* Opcode hash table. */ static struct hash_control *mn10300_hash; @@ -944,7 +945,8 @@ md_assemble (str) /* 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;