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
+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.
return false;
return graphite_can_represent_scev (scop, CHREC_LEFT (scev));
+ case ADDR_EXPR:
+ /* We cannot encode addresses for ISL. */
+ return false;
+
default:
break;
}