From: Diego Novillo Date: Thu, 21 Oct 1999 13:49:38 +0000 (+0000) Subject: * tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9fd98525417b385fc58680dc0ea32fb2348d79d;p=binutils-gdb.git * tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the form @abs16, @(abs16) and @(abs16 + imm). --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 4e43ccc1362..e706ef03e8e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 18 18:11:10 MDT 1999 Diego Novillo + + * tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the + form @abs16, @(abs16) and @(abs16 + imm). + 1999-10-21 Gavin Romig-Koch * config/tc-mips.c (ISA_HAS_COPROC_DELAYS) : New. diff --git a/gas/config/tc-d10v.c b/gas/config/tc-d10v.c index 7161a6b9763..4549a9568f1 100644 --- a/gas/config/tc-d10v.c +++ b/gas/config/tc-d10v.c @@ -1314,7 +1314,7 @@ find_opcode (opcode, myops) ((flags & OPERAND_PLUS) && ((X_op != O_absent) || (num != OPERAND_PLUS))) || ((flags & OPERAND_ATMINUS) && ((X_op != O_absent) || (num != OPERAND_ATMINUS))) || ((flags & OPERAND_ATPAR) && ((X_op != O_absent) || (num != OPERAND_ATPAR))) || - ((flags & OPERAND_ATSIGN) && ((X_op != O_absent) || (num != OPERAND_ATSIGN)))) + ((flags & OPERAND_ATSIGN) && ((X_op != O_absent) || ((num != OPERAND_ATSIGN) && (num != OPERAND_ATPAR))))) { match = 0; break;