tree-optimize.c (init_tree_optimization_passes): Move pass_merge_phi before the first pass_dominator.
* tree-optimize.c (init_tree_optimization_passes): Move pass_merge_phi before the first pass_dominator. From-SVN: r99691
This commit is contained in:
parent
c8c03f8479
commit
c80a9eb50f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-05-14 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* tree-optimize.c (init_tree_optimization_passes): Move
|
||||
pass_merge_phi before the first pass_dominator.
|
||||
|
||||
2005-05-13 Richard Earnshaw <richard.earnshaw@arm.com>
|
||||
|
||||
* arm.h (INITIALIZE_TRAMPOLINE): Make the call to __clear_cache
|
||||
|
|
|
@ -353,9 +353,9 @@ init_tree_optimization_passes (void)
|
|||
NEXT_PASS (pass_vrp);
|
||||
NEXT_PASS (pass_copy_prop);
|
||||
NEXT_PASS (pass_dce);
|
||||
NEXT_PASS (pass_merge_phi);
|
||||
NEXT_PASS (pass_dominator);
|
||||
|
||||
NEXT_PASS (pass_merge_phi);
|
||||
NEXT_PASS (pass_phiopt);
|
||||
NEXT_PASS (pass_may_alias);
|
||||
NEXT_PASS (pass_tail_recursion);
|
||||
|
|
Loading…
Add table
Reference in a new issue