diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 49e6d805650..1e05574df9b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-04-29 Tom de Vries + + PR tree-optimization/65893 + * passes.def (pass_all_optimizations): Move pass_stdarg to after + pass_dce. + 2015-04-29 Richard Biener * tree-vect-data-refs.c (vect_analyze_group_access): Properly diff --git a/gcc/passes.def b/gcc/passes.def index 6dce1419de1..32213e8561c 100644 --- a/gcc/passes.def +++ b/gcc/passes.def @@ -172,6 +172,7 @@ along with GCC; see the file COPYING3. If not see NEXT_PASS (pass_vrp); NEXT_PASS (pass_chkp_opt); NEXT_PASS (pass_dce); + NEXT_PASS (pass_stdarg); NEXT_PASS (pass_call_cdce); NEXT_PASS (pass_cselim); NEXT_PASS (pass_copy_prop); @@ -179,7 +180,6 @@ along with GCC; see the file COPYING3. If not see NEXT_PASS (pass_phiopt); NEXT_PASS (pass_tail_recursion); NEXT_PASS (pass_ch); - NEXT_PASS (pass_stdarg); NEXT_PASS (pass_lower_complex); NEXT_PASS (pass_sra); NEXT_PASS (pass_rename_ssa_copies);