From: Philip Blundell Date: Wed, 20 Feb 2002 21:39:56 +0000 (+0000) Subject: re PR target/5705 (code generated for ARM interrupt("IRQ") attribute) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9338ffe610bc23fd9d31bd22a83cb5fdadd05d0a;p=gcc.git re PR target/5705 (code generated for ARM interrupt("IRQ") attribute) 2002-02-20 Philip Blundell PR 5705 * config/arm/arm.h (HARD_REGNO_RENAME_OK): New macro. From-SVN: r49911 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 879ebbd6ce4..8f4d599378e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-20 Philip Blundell + + PR 5705 + * config/arm/arm.h (HARD_REGNO_RENAME_OK): New macro. + 2002-02-20 Richard Henderson PR c/5615 diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index c68c86757d4..bf989f409f0 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -1027,6 +1027,13 @@ extern const char * structure_size_string; 16, 17, 18, 19, 20, 21, 22, 23, \ 24, 25, 26 \ } + +/* Interrupt functions can only use registers that have already been + saved by the prologue, even if they would normally be + call-clobbered. */ +#define HARD_REGNO_RENAME_OK(SRC, DST) \ + (! IS_INTERRUPT (cfun->machine->func_type) || \ + regs_ever_live[DST]) /* Register and constant classes. */