Commit 79e4122c by Alexandre Oliva Committed by Alexandre Oliva

mn10300.c (print_operand_address): Do not add zero to SP.

* config/mn10300/mn10300.c (print_operand_address): Do not add
zero to SP.

From-SVN: r33577
parent c30b6330
2000-05-01 Alexandre Oliva <aoliva@cygnus.com>
* config/mn10300/mn10300.c (print_operand_address): Do not add
zero to SP.
* config/mn10300/mn10300.c (expand_epilogue): If SP is to be
adjusted by less than 256 bytes, use ret regardless of having any
callee-saved register to restore.
......
......@@ -328,12 +328,7 @@ print_operand_address (file, addr)
fputc ('+', file);
break;
case REG:
if (addr == stack_pointer_rtx)
print_operand_address (file, gen_rtx_PLUS (SImode,
stack_pointer_rtx,
GEN_INT (0)));
else
print_operand (file, addr, 0);
print_operand (file, addr, 0);
break;
case PLUS:
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment