Commit 7fb1d021 by Jeff Law Committed by Jeff Law

* passes.def: Move -Wrestrict pass after copy propagation.

From-SVN: r270662
parent 856f73d1
2019-04-29 Jeff Law <law@redhat.com>
* passes.def: Move -Wrestrict pass after copy propagation.
2019-04-29 Maya Rashish <coypu@sdf.org> 2019-04-29 Maya Rashish <coypu@sdf.org>
* config.gcc (default_gnu_indirect_function): Default to yes * config.gcc (default_gnu_indirect_function): Default to yes
......
...@@ -315,10 +315,10 @@ along with GCC; see the file COPYING3. If not see ...@@ -315,10 +315,10 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_strlen); NEXT_PASS (pass_strlen);
NEXT_PASS (pass_thread_jumps); NEXT_PASS (pass_thread_jumps);
NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */); NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */);
NEXT_PASS (pass_warn_restrict);
/* Threading can leave many const/copy propagations in the IL. /* Threading can leave many const/copy propagations in the IL.
Clean them up. */ Clean them up. */
NEXT_PASS (pass_copy_prop); NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_warn_restrict);
NEXT_PASS (pass_dse); NEXT_PASS (pass_dse);
NEXT_PASS (pass_cd_dce); NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_forwprop); NEXT_PASS (pass_forwprop);
......
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