mirror of git://gcc.gnu.org/git/gcc.git
fix compile without ISL
* toplev.c (process_options): Do not use flag_loop_block, flag_loop_interchange, and flag_loop_strip_mine. Add check for flag_loop_optimize_isl. From-SVN: r227282
This commit is contained in:
parent
15480aafa9
commit
124663e416
|
|
@ -1,3 +1,9 @@
|
||||||
|
2015-08-27 Sebastian Pop <s.pop@samsung.com>
|
||||||
|
|
||||||
|
* toplev.c (process_options): Do not use flag_loop_block,
|
||||||
|
flag_loop_interchange, and flag_loop_strip_mine. Add check for
|
||||||
|
flag_loop_optimize_isl.
|
||||||
|
|
||||||
2015-08-27 Sebastian Pop <s.pop@samsung.com>
|
2015-08-27 Sebastian Pop <s.pop@samsung.com>
|
||||||
|
|
||||||
* Makefile.in (OBJS): Remove graphite-blocking.o and
|
* Makefile.in (OBJS): Remove graphite-blocking.o and
|
||||||
|
|
|
||||||
|
|
@ -1316,10 +1316,8 @@ process_options (void)
|
||||||
|
|
||||||
#ifndef HAVE_isl
|
#ifndef HAVE_isl
|
||||||
if (flag_graphite
|
if (flag_graphite
|
||||||
|
|| flag_loop_optimize_isl
|
||||||
|| flag_graphite_identity
|
|| flag_graphite_identity
|
||||||
|| flag_loop_block
|
|
||||||
|| flag_loop_interchange
|
|
||||||
|| flag_loop_strip_mine
|
|
||||||
|| flag_loop_parallelize_all)
|
|| flag_loop_parallelize_all)
|
||||||
sorry ("Graphite loop optimizations cannot be used (ISL is not available)"
|
sorry ("Graphite loop optimizations cannot be used (ISL is not available)"
|
||||||
"(-fgraphite, -fgraphite-identity, -floop-block, "
|
"(-fgraphite, -fgraphite-identity, -floop-block, "
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue