From: Richard Biener Date: Mon, 14 Apr 2014 13:55:46 +0000 (+0000) Subject: passes.def: Move early points-to after early SRA. X-Git-Tag: releases/gcc-5.1.0~8141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9e4c82f9932ddd96de0dc2d495cdbb444e80096;p=thirdparty%2Fgcc.git passes.def: Move early points-to after early SRA. 2014-04-14 Richard Biener * passes.def: Move early points-to after early SRA. From-SVN: r209373 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 724c5f532a0b..e3bed9a8cf01 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-04-14 Richard Biener + + * passes.def: Move early points-to after early SRA. + 2014-04-14 Richard Biener * tree-ssa-forwprop.c (simplify_gimple_switch): Enhance diff --git a/gcc/passes.def b/gcc/passes.def index c98b048eafce..1ecfb713226c 100644 --- a/gcc/passes.def +++ b/gcc/passes.def @@ -68,10 +68,10 @@ along with GCC; see the file COPYING3. If not see /* After CCP we rewrite no longer addressed locals into SSA form if possible. */ NEXT_PASS (pass_forwprop); + NEXT_PASS (pass_sra_early); /* pass_build_ealias is a dummy pass that ensures that we execute TODO_rebuild_alias at this point. */ NEXT_PASS (pass_build_ealias); - NEXT_PASS (pass_sra_early); NEXT_PASS (pass_fre); NEXT_PASS (pass_copy_prop); NEXT_PASS (pass_merge_phi);