2005-03-03 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
* config/tc-arc.c(md_assemble): Remove dead code for handling immediate indexing with ld and st.
This commit is contained in:
parent
2da5c03714
commit
2f12d57ff9
2 changed files with 6 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-03-03 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
|
||||
|
||||
* config/tc-arc.c(md_assemble): Remove dead code for handling
|
||||
immediate indexing of ld and st .
|
||||
|
||||
2005-03-02 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
|
|
|
@ -436,15 +436,7 @@ md_assemble (str)
|
|||
/* Non operand chars must match exactly. */
|
||||
if (*syn != '%' || *++syn == '%')
|
||||
{
|
||||
/* Handle '+' specially as we want to allow "ld r0,[sp-4]". */
|
||||
/* ??? The syntax has changed to [sp,-4]. */
|
||||
if (0 && *syn == '+' && *str == '-')
|
||||
{
|
||||
/* Skip over syn's +, but leave str's - alone.
|
||||
That makes the case identical to "ld r0,[sp+-4]". */
|
||||
++syn;
|
||||
}
|
||||
else if (*str == *syn)
|
||||
if (*str == *syn)
|
||||
{
|
||||
if (*syn == ' ')
|
||||
past_opcode_p = 1;
|
||||
|
|
Loading…
Reference in a new issue