Commit 657959ca by Jeffrey A Law Committed by Jeff Law

alias.c (init_alias_analysis): Do not call prologue_epilogue_contains until…

alias.c (init_alias_analysis): Do not call prologue_epilogue_contains until after reload has completed.

        * alias.c (init_alias_analysis): Do not call
        prologue_epilogue_contains until after reload has completed.

From-SVN: r34838
parent 4cf88f57
Mon Jul 3 00:32:47 2000 Jeffrey A Law (law@cygnus.com)
* alias.c (init_alias_analysis): Do not call
prologue_epilogue_contains until after reload has completed.
2000-07-02 Benjamin Chelf <chelf@codesourcery.com> 2000-07-02 Benjamin Chelf <chelf@codesourcery.com>
* c-common.h (genrtl_begin_compound_stmt): Remove declaration. * c-common.h (genrtl_begin_compound_stmt): Remove declaration.
......
...@@ -1984,7 +1984,12 @@ init_alias_analysis () ...@@ -1984,7 +1984,12 @@ init_alias_analysis ()
rtx note, set; rtx note, set;
#if defined (HAVE_prologue) || defined (HAVE_epilogue) #if defined (HAVE_prologue) || defined (HAVE_epilogue)
if (prologue_epilogue_contains (insn)) /* The prologue/epilouge insns are not threaded onto the
insn chain until after reload has completed. Thus,
there is no sense wasting time checking if INSN is in
the prologue/epilogue until after reload has completed. */
if (reload_completed
&& prologue_epilogue_contains (insn))
continue; continue;
#endif #endif
......
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