diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-30 12:16:56 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-30 12:16:56 +0000 |
commit | 349858d4f7bcc86138ab1422fa2522fb3497f9b5 (patch) | |
tree | 9ae5e20341fac9509fe1ee49a9b5a43669a5bdcb /gcc/cse.c | |
parent | 6c04732d6df00425e1c19546a696ed0bd9a3a8a2 (diff) | |
download | gcc-349858d4f7bcc86138ab1422fa2522fb3497f9b5.tar.gz |
Delete obsolete macros
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30723 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/cse.c b/gcc/cse.c index 1d82a96db36..86797087aea 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -462,18 +462,10 @@ struct table_elt /* Determine whether register number N is considered a fixed register for CSE. It is desirable to replace other regs with fixed regs, to reduce need for non-fixed hard regs. - A reg wins if it is either the frame pointer or designated as fixed, - but not if it is an overlapping register. */ -#ifdef OVERLAPPING_REGNO_P -#define FIXED_REGNO_P(N) \ - (((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \ - || fixed_regs[N] || global_regs[N]) \ - && ! OVERLAPPING_REGNO_P ((N))) -#else + A reg wins if it is either the frame pointer or designated as fixed. */ #define FIXED_REGNO_P(N) \ ((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \ || fixed_regs[N] || global_regs[N]) -#endif /* Compute cost of X, as stored in the `cost' field of a table_elt. Fixed hard registers and pointers into the frame are the cheapest with a cost |