diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-04-28 04:45:12 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-04-28 04:45:12 +0000 |
commit | 317443b3c6812eac31afa47f1c4b6dca92f3364e (patch) | |
tree | 097a4454cae0a6804ad11961c8971610f939615b /gcc/alias.c | |
parent | ae6fd0a8686f5b3381c8a51947ec25a4ca48c701 (diff) | |
download | gcc-317443b3c6812eac31afa47f1c4b6dca92f3364e.tar.gz |
always define HAVE_epilogue
gcc/ChangeLog:
2015-04-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* defaults.h (gen_epilogue): New function.
(HAVE_epilogue): Add default definition to false.
* alias.c (init_alias_analysis): don't check if HAVE_epilogue is
defined.
* cfgrtl.c (cfg_layout_finalize): Likewise.
* df-scan.c: Likewise.
* function.c (thread_prologue_and_epilogue_insns): Likewise.
(reposition_prologue_and_epilogue_notes): Likewise.
* reorg.c (find_end_label): Likewise.
* toplev.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222506 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 8f486600063..7d9a3d9113d 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -2925,15 +2925,19 @@ init_alias_analysis (void) { rtx note, set; -#if defined (HAVE_prologue) || defined (HAVE_epilogue) +#if defined (HAVE_prologue) + static const bool prologue = true; +#else + static const bool prologue = false; +#endif + /* The prologue/epilogue 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 + if ((prologue || HAVE_epilogue) && reload_completed && prologue_epilogue_contains (insn)) continue; -#endif /* If this insn has a noalias note, process it, Otherwise, scan for sets. A simple set will have no side effects |