[PATCH] Break out phi-only cprop into its own file
authorJeff Law <law@redhat.com>
Fri, 18 Sep 2015 15:29:01 +0000 (09:29 -0600)
committerJeff Law <law@gcc.gnu.org>
Fri, 18 Sep 2015 15:29:01 +0000 (09:29 -0600)
commita502f7b6e47d3f790e01e91ab5c480ee4b261486
tree6635c075164421ea26114d5493d1d3a225bd5829
parente707a2dd666f2ba1acaf9f0e91684ab4d2b72850
[PATCH] Break out phi-only cprop into its own file

PR tree-optimization/47679
* Makefile.in (OBJS): Add tree-ssa-phionlycprop.o
* tree-ssa-dom.c: Remove unnecessary header includes.
(remove_stmt_or_phi): Moved from here into tree-ssa-phionlycprop.c
(get_rhs_or_phi_arg, get_lhs_or_phi_result): Likewise.
(propagate_rhs_into_lhs, eliminate_const_or_copy): Likewise.
(eliminate_degenerate_phis_1, pass_phi_only_cprop): Likewise.
(pass_phi_only_cprop::execute): Likewise.
(make_pass_phi_only_cprop): Likewise.
* tree-ssa-phionlycprop.c: New file with moved code.  Eliminate
uses of file scoped statics by passing the required objects
as parameters wherever needed.

From-SVN: r227908
gcc/ChangeLog
gcc/Makefile.in
gcc/tree-ssa-dom.c
gcc/tree-ssa-phionlycprop.c [new file with mode: 0644]