summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2017-02-10 14:28:11 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2017-02-10 14:28:11 +0000
commit06d779f0bee6a1b86c2cf4507d8e30436fd645b0 (patch)
treeb6c759878ef9a55717d411c154571d466b9f9ea3
parentad812c9a3278827b0b0c691274489dfd54832191 (diff)
downloadgcc-06d779f0bee6a1b86c2cf4507d8e30436fd645b0.tar.gz
2017-02-10 Richard Biener <rguenther@suse.de>
* toplev.c (process_options): Do not mention obsolete graphite options when printing sorry message about missing graphite support. Mention -floop-nest-optimize. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@245331 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/toplev.c7
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6bdfddf1fb5..8e224ac399d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2017-02-10 Richard Biener <rguenther@suse.de>
+
+ * toplev.c (process_options): Do not mention obsolete graphite
+ options when printing sorry message about missing graphite support.
+ Mention -floop-nest-optimize.
+
2017-02-10 Christophe Lyon <christophe.lyon@linaro.org>
* config/aarch64/arm_neon.h (vtst_p8): Rewrite without asm.
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 2335ad716ae..272f9727bf8 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1258,10 +1258,9 @@ process_options (void)
|| flag_loop_nest_optimize
|| flag_graphite_identity
|| flag_loop_parallelize_all)
- sorry ("Graphite loop optimizations cannot be used (isl is not available)"
- "(-fgraphite, -fgraphite-identity, -floop-block, "
- "-floop-interchange, -floop-strip-mine, -floop-parallelize-all, "
- "-floop-unroll-and-jam, and -ftree-loop-linear)");
+ sorry ("Graphite loop optimizations cannot be used (isl is not available) "
+ "(-fgraphite, -fgraphite-identity, -floop-nest-optimize, "
+ "-floop-parallelize-all)");
#endif
if (flag_check_pointer_bounds)