mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-13 15:05:46 +00:00
Flag SP as modified for @-sp operand - OPERAND_ATMINUS.
This commit is contained in:
parent
719ddab4cc
commit
528859ea3f
@ -1,3 +1,8 @@
|
||||
Fri Oct 10 11:54:50 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* config/tc-d10v.c (parallel_ok): Flag SP as modified for @-sp
|
||||
operand - OPERAND_ATMINUS.
|
||||
|
||||
Fri Oct 10 00:47:44 1997 Michael Meissner <meissner@cygnus.com>
|
||||
|
||||
* config/tc-d10v.c (parallel_ok): Note that auto increment and
|
||||
|
@ -879,6 +879,12 @@ parallel_ok (op1, insn1, op2, insn2, exec_type)
|
||||
mod[j] |= 1 << regno;
|
||||
}
|
||||
}
|
||||
else if (flags & OPERAND_ATMINUS)
|
||||
{
|
||||
/* SP implicitly used/modified */
|
||||
mod[j] |= 1 << 15;
|
||||
used[j] |= 1 << 15;
|
||||
}
|
||||
}
|
||||
if (op->exec_type & RMEM)
|
||||
used[j] |= 1 << 20;
|
||||
|
Loading…
Reference in New Issue
Block a user