From: Joern Rennecke Date: Thu, 5 Aug 1999 22:09:04 +0000 (+0000) Subject: * config/tc-sh.c (md_assemble): Call as_bad when there are excess X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fc44b2d43d20982cdb455f25f34a55b1803c744;p=binutils-gdb.git * config/tc-sh.c (md_assemble): Call as_bad when there are excess operands. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 2c8d3ee1550..cf83c5644c5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 5 23:05:56 1998 J"orn Rennecke + + * config/tc-sh.c (md_assemble): Call as_bad when there are excess + operands. + 1999-08-05 Donn Terry * config/te-interix.h: New file. diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 2752d031cb3..9f7a6c1cca4 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -1066,9 +1066,16 @@ md_assemble (str) } else { - if (opcode->arg[0] != A_END) + if (opcode->arg[0] == A_END) { - get_operands (opcode, op_end, operand); + /* Ignore trailing whitespace. If there is any, it has already + been compressed to a single space. */ + if (*op_end == ' ') + op_end++; + } + else + { + op_end = get_operands (opcode, op_end, operand); } opcode = get_specific (opcode, operand); @@ -1083,6 +1090,9 @@ md_assemble (str) return; } + if (*op_end) + as_bad (_("excess operands: '%s'"), op_end); + build_Mytes (opcode, operand); }