]> Git Repo - binutils.git/commitdiff
* tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the
authorDiego Novillo <[email protected]>
Thu, 21 Oct 1999 13:49:38 +0000 (13:49 +0000)
committerDiego Novillo <[email protected]>
Thu, 21 Oct 1999 13:49:38 +0000 (13:49 +0000)
form @abs16, @(abs16) and @(abs16 + imm).

gas/ChangeLog
gas/config/tc-d10v.c

index 4e43ccc13624b452b41eb446838a0729ad92a40c..e706ef03e8e4fd6124d53485ac122a9369b9441f 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 18 18:11:10 MDT 1999   Diego Novillo <[email protected]>
+
+       * tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the
+       form @abs16, @(abs16) and @(abs16 + imm).
+
 1999-10-21  Gavin Romig-Koch  <[email protected]>
 
        * config/tc-mips.c (ISA_HAS_COPROC_DELAYS) : New.
index 7161a6b97632fcb01f66e3332f51f8c0ac8ffcca..4549a9568f15ea702bbdf3ba41f2f3fc01171778 100644 (file)
@@ -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;
This page took 0.039568 seconds and 4 git commands to generate.