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
This commit is contained in:
Kaveh R. Ghazi 1999-08-08 19:14:42 +00:00 committed by Kaveh Ghazi
parent 511b60ffc0
commit 950fe84354
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sun Aug 8 15:13:20 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* alias.c (init_alias_analysis): Wrap call to
`prologue_epilogue_contains' within HAVE_prologue||HAVE_epilogue.
1999-08-07 Bruce Korb <autogen@linuxbox.com>
* fixinc/inclhack.def(irix_asm_apostrophe): IRIX 5.2's

View File

@ -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;