diff options
author | Richard Biener <rguenther@suse.de> | 2017-06-16 12:19:24 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2017-06-16 12:19:24 +0000 |
commit | 01f1c24e423755d237e6c13ff81da1356b153caa (patch) | |
tree | 4e97df0e01a3410ea111bab38411be80a1de6d6c /gcc/tree-pass.h | |
parent | 4317778a9b6213a97a3de5ffd77edf516592fb71 (diff) | |
download | gcc-01f1c24e423755d237e6c13ff81da1356b153caa.zip gcc-01f1c24e423755d237e6c13ff81da1356b153caa.tar.gz gcc-01f1c24e423755d237e6c13ff81da1356b153caa.tar.bz2 |
re PR tree-optimization/81090 ([graphite] ICE in loop_preheader_edge)
2017-06-16 Richard Biener <rguenther@suse.de>
PR tree-optimization/81090
* passes.def (pass_record_bounds): Remove.
* tree-pass.h (make_pass_record_bounds): Likewise.
* tree-ssa-loop.c (pass_data_record_bounds, pass_record_bounds,
make_pass_record_bounds): Likewise.
* tree-ssa-loop-ivcanon.c (canonicalize_induction_variables): Do
not free niter estimates at the beginning but at the end.
* tree-scalar-evolution.c (scev_finalize): Free niter estimates.
* gcc.dg/graphite/pr81090.c: New testcase.
From-SVN: r249249
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index 0f7d936..2863f76 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -373,7 +373,6 @@ extern gimple_opt_pass *make_pass_predcom (gcc::context *ctxt); extern gimple_opt_pass *make_pass_iv_canon (gcc::context *ctxt); extern gimple_opt_pass *make_pass_scev_cprop (gcc::context *ctxt); extern gimple_opt_pass *make_pass_empty_loop (gcc::context *ctxt); -extern gimple_opt_pass *make_pass_record_bounds (gcc::context *ctxt); extern gimple_opt_pass *make_pass_graphite (gcc::context *ctxt); extern gimple_opt_pass *make_pass_graphite_transforms (gcc::context *ctxt); extern gimple_opt_pass *make_pass_if_conversion (gcc::context *ctxt); |