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> 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 * config/mn10300/mn10300.c (expand_epilogue): If SP is to be
adjusted by less than 256 bytes, use ret regardless of having any adjusted by less than 256 bytes, use ret regardless of having any
callee-saved register to restore. callee-saved register to restore.
......
...@@ -328,11 +328,6 @@ print_operand_address (file, addr) ...@@ -328,11 +328,6 @@ print_operand_address (file, addr)
fputc ('+', file); fputc ('+', file);
break; break;
case REG: 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; break;
case PLUS: 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