* config/tc-d10v.c (find_opcode): Reject SP operand if

OPERAND_NOSP flag is present.
This commit is contained in:
Alexandre Oliva 2001-12-04 10:07:03 +00:00
parent 41852a32f7
commit 461448d855
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-12-04 Alexandre Oliva <aoliva@redhat.com>
* config/tc-d10v.c (find_opcode): Reject SP operand if
OPERAND_NOSP flag is present.
2001-12-03 Eric Christopher <echristo@redhat.com>
* config/tc-mips.c (tc_gen_reloc): One missed BFD_RELOC_MIPS_GPREL.

View File

@ -1468,6 +1468,9 @@ find_opcode (opcode, myops)
if ((d10v_operands[opcode->operands[i]].flags & OPERAND_EVEN) &&
(myops[i].X_add_number & 1))
as_fatal (_("Register number must be EVEN"));
if ((d10v_operands[opcode->operands[i]].flags & OPERAND_NOSP)
&& (myops[i].X_add_number & OPERAND_SP))
as_bad (_("Unsupported use of sp"));
if (myops[i].X_op == O_register)
{
if (!(d10v_operands[opcode->operands[i]].flags & OPERAND_REG))