Commit 4c82aa3b by Richard Biener Committed by Richard Biener

re PR tree-optimization/88862 (ICE in extract_affine, at graphite-sese-to-poly.c:313)

2019-01-22  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/88862
	* graphite-scop-detection.c
	(scop_detection::graphite_can_represent_scev): Reject ADDR_EXPR.

From-SVN: r268147
parent 1b7ee8b4
2019-01-22 Richard Biener <rguenther@suse.de>
PR tree-optimization/88862
* graphite-scop-detection.c
(scop_detection::graphite_can_represent_scev): Reject ADDR_EXPR.
2019-01-22 Andrew Stubbs <ams@codesourcery.com>
* doc/extend.tex (AMD GCN Function Attributes): New section.
......
......@@ -892,6 +892,10 @@ scop_detection::graphite_can_represent_scev (sese_l scop, tree scev)
return false;
return graphite_can_represent_scev (scop, CHREC_LEFT (scev));
case ADDR_EXPR:
/* We cannot encode addresses for ISL. */
return false;
default:
break;
}
......
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