mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-26 23:01:24 +08:00
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:
parent
511b60ffc0
commit
950fe84354
@ -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>
|
1999-08-07 Bruce Korb <autogen@linuxbox.com>
|
||||||
|
|
||||||
* fixinc/inclhack.def(irix_asm_apostrophe): IRIX 5.2's
|
* 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. */
|
/* Walk the insns adding values to the new_reg_base_value array. */
|
||||||
for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
|
for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
|
||||||
{
|
{
|
||||||
|
#if defined (HAVE_prologue) || defined (HAVE_epilogue)
|
||||||
if (prologue_epilogue_contains (insn))
|
if (prologue_epilogue_contains (insn))
|
||||||
continue;
|
continue;
|
||||||
|
#endif
|
||||||
if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
|
if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
|
||||||
{
|
{
|
||||||
rtx note, set;
|
rtx note, set;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user