diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64fa602f84382a4a76cfc8a18010c67754c1f141..f4ad8225f95fb0dc9a91b4b0ca093488af692ec0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-01 Jim Wilson <wilson@redhat.com> + + * config/v850/v850.h (EPILOGUE_USES): Define. + 2002-09-30 Andrew Haley <aph@redhat.com> * flow.c (insn_dead_p): When using non-call-exceptions, don't diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index 478cd53aefe0011ea0d1a4419eba5c8f8d09094e..b04b59ef69014c5f2be4b45b2bbe35d09284ef15 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -812,6 +812,12 @@ struct cum_arg { int nbytes; int anonymous_args; }; #define EXIT_IGNORE_STACK 1 +/* Define this macro as a C expression that is nonzero for registers + used by the epilogue or the `return' pattern. */ + +#define EPILOGUE_USES(REGNO) \ + (reload_completed && (REGNO) == LINK_POINTER_REGNUM) + /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */