Commit 950fe843 by Kaveh R. Ghazi Committed by Kaveh Ghazi

alias.c (init_alias_analysis): Wrap call to `prologue_epilogue_contains' within…

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
parent 511b60ff
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment