aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.def
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2015-04-29 09:13:49 +0000
committerTom de Vries <vries@gcc.gnu.org>2015-04-29 09:13:49 +0000
commit32966af8aaa84384baa4c1eb66b5efdd52055201 (patch)
treed5ead41ce1175033f75cb968b21031cdb18baf5a /gcc/passes.def
parent2c8f068300e1fc38c73a992f82c0d19af55ded04 (diff)
downloadgcc-32966af8aaa84384baa4c1eb66b5efdd52055201.zip
gcc-32966af8aaa84384baa4c1eb66b5efdd52055201.tar.gz
gcc-32966af8aaa84384baa4c1eb66b5efdd52055201.tar.bz2
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
Diffstat (limited to 'gcc/passes.def')
-rw-r--r--gcc/passes.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.def b/gcc/passes.def
index 6dce141..32213e8 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);