Commit b31ad637 by Paul Brook Committed by Paul Brook

arm.c (thumb_exit, [...]): Remove pointless #ifdef.

	* config/arm/arm.c (thumb_exit, thumb_unexpanded_epilogue): Remove
	pointless #ifdef.

From-SVN: r82262
parent 5ab8e5cc
2004-05-25 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (thumb_exit, thumb_unexpanded_epilogue): Remove
pointless #ifdef.
2004-04-25 Paolo Bonzini <bonzini@gnu.org> 2004-04-25 Paolo Bonzini <bonzini@gnu.org>
* Makefile.in (top_builddir): Define to . * Makefile.in (top_builddir): Define to .
......
...@@ -12491,7 +12491,6 @@ thumb_exit (FILE *f, int reg_containing_return_addr, rtx eh_ofs) ...@@ -12491,7 +12491,6 @@ thumb_exit (FILE *f, int reg_containing_return_addr, rtx eh_ofs)
size = 12; size = 12;
else else
{ {
#ifdef RTX_CODE
/* If we can deduce the registers used from the function's /* If we can deduce the registers used from the function's
return value. This is more reliable that examining return value. This is more reliable that examining
regs_ever_live[] because that will be set if the register is regs_ever_live[] because that will be set if the register is
...@@ -12501,7 +12500,6 @@ thumb_exit (FILE *f, int reg_containing_return_addr, rtx eh_ofs) ...@@ -12501,7 +12500,6 @@ thumb_exit (FILE *f, int reg_containing_return_addr, rtx eh_ofs)
if (current_function_return_rtx != 0) if (current_function_return_rtx != 0)
mode = GET_MODE (current_function_return_rtx); mode = GET_MODE (current_function_return_rtx);
else else
#endif
mode = DECL_MODE (DECL_RESULT (current_function_decl)); mode = DECL_MODE (DECL_RESULT (current_function_decl));
size = GET_MODE_SIZE (mode); size = GET_MODE_SIZE (mode);
...@@ -12953,7 +12951,6 @@ thumb_unexpanded_epilogue (void) ...@@ -12953,7 +12951,6 @@ thumb_unexpanded_epilogue (void)
int size; int size;
int mode; int mode;
#ifdef RTX_CODE
/* If we can deduce the registers used from the function's return value. /* If we can deduce the registers used from the function's return value.
This is more reliable that examining regs_ever_live[] because that This is more reliable that examining regs_ever_live[] because that
will be set if the register is ever used in the function, not just if will be set if the register is ever used in the function, not just if
...@@ -12962,7 +12959,6 @@ thumb_unexpanded_epilogue (void) ...@@ -12962,7 +12959,6 @@ thumb_unexpanded_epilogue (void)
if (current_function_return_rtx != 0) if (current_function_return_rtx != 0)
mode = GET_MODE (current_function_return_rtx); mode = GET_MODE (current_function_return_rtx);
else else
#endif
mode = DECL_MODE (DECL_RESULT (current_function_decl)); mode = DECL_MODE (DECL_RESULT (current_function_decl));
size = GET_MODE_SIZE (mode); size = GET_MODE_SIZE (mode);
......
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