aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.dg/pr90866-2.c24
-rw-r--r--gcc/testsuite/gcc.dg/pr90866.c18
-rw-r--r--gcc/tree-ssa-strlen.c14
5 files changed, 64 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 09e05e6..cbf0f02 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2019-06-13 Martin Sebor <msebor@redhat.com>
+
+ PR tree-optimization/90662
+ * tree-ssa-strlen.c (get_stridx): Convert fold_build2 operands
+ to the same type.
+
2019-06-13 Jan Hubicka <hubicka@ucw.cz>
PR bootstrap/90873
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7032352..bff5bbc 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2019-06-13 Martin Sebor <msebor@redhat.com>
+
+ PR tree-optimization/90662
+ * gcc.dg/pr90866-2.c: New test.
+ * gcc.dg/pr90866.c: Ditto.
+
2019-06-13 Jiufu Guo <guojiufu@linux.ibm.com>
Lijia He <helijia@linux.ibm.com>
diff --git a/gcc/testsuite/gcc.dg/pr90866-2.c b/gcc/testsuite/gcc.dg/pr90866-2.c
new file mode 100644
index 0000000..8c11049
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr90866-2.c
@@ -0,0 +1,24 @@
+/* PR tree-optimization/90866 - ICE in fold_binary_loc, at fold-const.c:9827
+ { dg-do compile }
+ { dg-options "-O2 -fsanitize=thread" } */
+
+typedef enum { a } b;
+typedef struct {
+ int c[0];
+} d;
+typedef struct {
+ int *data;
+} e;
+typedef struct {
+ e buffer;
+} f;
+int g, h;
+int i();
+int i(f *j, d *k, b l, int m) {
+ if (l)
+ if (m) {
+ h = j->buffer.data[0];
+ k->c[g] = k->c[g] * 8;
+ }
+ return 0;
+}
diff --git a/gcc/testsuite/gcc.dg/pr90866.c b/gcc/testsuite/gcc.dg/pr90866.c
new file mode 100644
index 0000000..66c92ee
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr90866.c
@@ -0,0 +1,18 @@
+/* PR tree-optimization/90866 - ICE in fold_binary_loc, at fold-const.c:9827
+ { dg-do compile }
+ { dg-options "-O3 -Wall -fno-tree-loop-optimize" } */
+
+int a[1024], b[1024];
+
+void f (void)
+{
+ int i = 0;
+ for ( ; ; i++)
+ {
+ b[16] = a[i * 16 + 10];
+ b[i * 16 + 11] = a[i * 16 + 11] * 3;
+ b[i * 16 + 12] = a[i * 16 + 12] * 4;
+ b[i * 16 + 13] = a[i * 16 + 13] * 4;
+ b[i * 16 + 14] = a[i * 16 + 14] * 3;
+ }
+}
diff --git a/gcc/tree-ssa-strlen.c b/gcc/tree-ssa-strlen.c
index 944650c..7369a73 100644
--- a/gcc/tree-ssa-strlen.c
+++ b/gcc/tree-ssa-strlen.c
@@ -322,11 +322,17 @@ get_stridx (tree exp)
if (TREE_CODE (ptr) == ARRAY_REF)
{
off = TREE_OPERAND (ptr, 1);
- /* Scale the array index by the size of the element
- type (normally 1 for char). */
- off = fold_build2 (MULT_EXPR, TREE_TYPE (off), off,
- eltsize);
ptr = TREE_OPERAND (ptr, 0);
+ if (!integer_onep (eltsize))
+ {
+ /* Scale the array index by the size of the element
+ type in the rare case that it's greater than
+ the typical 1 for char, making sure both operands
+ have the same type. */
+ eltsize = fold_convert (ssizetype, eltsize);
+ off = fold_convert (ssizetype, off);
+ off = fold_build2 (MULT_EXPR, ssizetype, off, eltsize);
+ }
}
else
off = integer_zero_node;