aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2018-01-24 09:31:56 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2018-01-24 09:31:56 +0000
commitda37a70f55338ef295bb1f7a39f9ef3e407835dd (patch)
tree9688e107e8359408fc0e893df65b1ce706c9d077 /gcc
parentdf9e39b16e41cd3452e6349e0f662f8aaf9a2dfa (diff)
downloadgcc-da37a70f55338ef295bb1f7a39f9ef3e407835dd.zip
gcc-da37a70f55338ef295bb1f7a39f9ef3e407835dd.tar.gz
gcc-da37a70f55338ef295bb1f7a39f9ef3e407835dd.tar.bz2
re PR tree-optimization/82819 ([graphite] ICE in set_codegen_error, at graphite-isl-ast-to-gimple.c:206)
2018-01-24 Richard Biener <rguenther@suse.de> PR tree-optimization/82819 * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Avoid code generating pluses that are no-ops in the target precision. * gcc.dg/graphite/pr82819.c: New testcase. From-SVN: r257012
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/graphite-isl-ast-to-gimple.c3
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/graphite/pr82819.c22
4 files changed, 35 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 29177ab..12341ea 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,11 @@
2018-01-24 Richard Biener <rguenther@suse.de>
+ PR tree-optimization/82819
+ * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Avoid
+ code generating pluses that are no-ops in the target precision.
+
+2018-01-24 Richard Biener <rguenther@suse.de>
+
PR middle-end/84000
* tree-cfg.c (replace_loop_annotate): Handle annot_expr_parallel_kind.
diff --git a/gcc/graphite-isl-ast-to-gimple.c b/gcc/graphite-isl-ast-to-gimple.c
index 322084f..89d8d94 100644
--- a/gcc/graphite-isl-ast-to-gimple.c
+++ b/gcc/graphite-isl-ast-to-gimple.c
@@ -326,7 +326,8 @@ binary_op_to_tree (tree type, __isl_take isl_ast_expr *expr, ivs_params &ip)
/* From our constraint generation we may get modulo operations that
we cannot represent explicitely but that are no-ops for TYPE.
Elide those. */
- if (expr_type == isl_ast_op_pdiv_r
+ if ((expr_type == isl_ast_op_pdiv_r
+ || expr_type == isl_ast_op_add)
&& isl_ast_expr_get_type (arg_expr) == isl_ast_expr_int
&& (wi::exact_log2 (widest_int_from_isl_expr_int (arg_expr))
>= TYPE_PRECISION (type)))
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 23fdb9f..eed77ed 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2018-01-24 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/82819
+ * gcc.dg/graphite/pr82819.c: New testcase.
+
2018-01-23 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/83921
diff --git a/gcc/testsuite/gcc.dg/graphite/pr82819.c b/gcc/testsuite/gcc.dg/graphite/pr82819.c
new file mode 100644
index 0000000..ed4b1b6
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/graphite/pr82819.c
@@ -0,0 +1,22 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -floop-nest-optimize" } */
+
+short int *ts;
+
+void
+c2 (unsigned long long int s4, int ns)
+{
+ short int *b2 = (short int *)&ns;
+
+ while (ns != 0)
+ {
+ int xn;
+
+ for (xn = 0; xn < 3; ++xn)
+ for (*b2 = 0; *b2 < 2; ++*b2)
+ s4 += xn;
+ if (s4 != 0)
+ b2 = ts;
+ ++ns;
+ }
+}