diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-08-08 19:14:42 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-08-08 19:14:42 +0000 |
commit | 950fe84354f4e23442ea024390b8cccd6aa1fc0b (patch) | |
tree | a90e4144b7c1b622fc11adc22e9d06c478f719fa /gcc/alias.c | |
parent | 511b60ffc005b409fa6959854f88106c92a6b624 (diff) | |
download | gcc-950fe84354f4e23442ea024390b8cccd6aa1fc0b.zip gcc-950fe84354f4e23442ea024390b8cccd6aa1fc0b.tar.gz gcc-950fe84354f4e23442ea024390b8cccd6aa1fc0b.tar.bz2 |
alias.c (init_alias_analysis): Wrap call to `prologue_epilogue_contains' within HAVE_prologue||HAVE_epilogue.
* alias.c (init_alias_analysis): Wrap call to
`prologue_epilogue_contains' within HAVE_prologue||HAVE_epilogue.
From-SVN: r28599
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 63c9efd..6c2e886 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -1468,8 +1468,10 @@ init_alias_analysis () /* Walk the insns adding values to the new_reg_base_value array. */ for (insn = get_insns (); insn; insn = NEXT_INSN (insn)) { +#if defined (HAVE_prologue) || defined (HAVE_epilogue) if (prologue_epilogue_contains (insn)) continue; +#endif if (GET_RTX_CLASS (GET_CODE (insn)) == 'i') { rtx note, set; |