Commit 32966af8 by Tom de Vries Committed by Tom de Vries

Move pass_stdarg to after pass_dce in pass_all_optimizations

2015-04-29  Tom de Vries  <tom@codesourcery.com>

	PR tree-optimization/65893
	* passes.def (pass_all_optimizations): Move pass_stdarg to after
	pass_dce.

From-SVN: r222567
parent 2c8f0683
2015-04-29 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/65893
* passes.def (pass_all_optimizations): Move pass_stdarg to after
pass_dce.
2015-04-29 Richard Biener <rguenther@suse.de> 2015-04-29 Richard Biener <rguenther@suse.de>
* tree-vect-data-refs.c (vect_analyze_group_access): Properly * tree-vect-data-refs.c (vect_analyze_group_access): Properly
......
...@@ -172,6 +172,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -172,6 +172,7 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_vrp); NEXT_PASS (pass_vrp);
NEXT_PASS (pass_chkp_opt); NEXT_PASS (pass_chkp_opt);
NEXT_PASS (pass_dce); NEXT_PASS (pass_dce);
NEXT_PASS (pass_stdarg);
NEXT_PASS (pass_call_cdce); NEXT_PASS (pass_call_cdce);
NEXT_PASS (pass_cselim); NEXT_PASS (pass_cselim);
NEXT_PASS (pass_copy_prop); NEXT_PASS (pass_copy_prop);
...@@ -179,7 +180,6 @@ along with GCC; see the file COPYING3. If not see ...@@ -179,7 +180,6 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_phiopt); NEXT_PASS (pass_phiopt);
NEXT_PASS (pass_tail_recursion); NEXT_PASS (pass_tail_recursion);
NEXT_PASS (pass_ch); NEXT_PASS (pass_ch);
NEXT_PASS (pass_stdarg);
NEXT_PASS (pass_lower_complex); NEXT_PASS (pass_lower_complex);
NEXT_PASS (pass_sra); NEXT_PASS (pass_sra);
NEXT_PASS (pass_rename_ssa_copies); NEXT_PASS (pass_rename_ssa_copies);
......
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