]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/108791 - checking ICE with sloppy ADDR_EXPR
authorRichard Biener <rguenther@suse.de>
Wed, 15 Feb 2023 13:00:21 +0000 (14:00 +0100)
committerRichard Biener <rguenther@suse.de>
Thu, 27 Apr 2023 12:05:24 +0000 (14:05 +0200)
The following fixes a checking ICE by choosing a more appropriate
type for an ADDR_EXPR built by forwprop.

PR tree-optimization/108791
* tree-ssa-forwprop.cc (optimize_vector_load): Build
the ADDR_EXPR of a TARGET_MEM_REF using a more meaningful
type.

* gcc.dg/torture/pr108791.c: New testcase.

(cherry picked from commit 441c466fd4d8b9afd99f585f7c4bfade911c4652)

gcc/testsuite/gcc.dg/torture/pr108791.c [new file with mode: 0644]
gcc/tree-ssa-forwprop.cc

diff --git a/gcc/testsuite/gcc.dg/torture/pr108791.c b/gcc/testsuite/gcc.dg/torture/pr108791.c
new file mode 100644 (file)
index 0000000..c1c1cb2
--- /dev/null
@@ -0,0 +1,9 @@
+/* { dg-do compile } */
+
+int f (int *a(), int *b, int *c, int *d)
+{
+  int s = 0;
+  for (int *i = (int *)a; i < b; ++i, ++c)
+    s += *c * d[*i];
+  return s;
+}
index 9290d1558e5628edd67f7ea321719b00fec6fff1..062f5667f14a65990329b826e3d4dfb3139337c3 100644 (file)
@@ -3255,7 +3255,8 @@ optimize_vector_load (gimple_stmt_iterator *gsi)
     {
       if (TREE_CODE (TREE_OPERAND (load_rhs, 0)) == ADDR_EXPR)
        mark_addressable (TREE_OPERAND (TREE_OPERAND (load_rhs, 0), 0));
-      tree tem = make_ssa_name (TREE_TYPE (TREE_OPERAND (load_rhs, 0)));
+      tree ptrtype = build_pointer_type (TREE_TYPE (load_rhs));
+      tree tem = make_ssa_name (ptrtype);
       gimple *new_stmt
        = gimple_build_assign (tem, build1 (ADDR_EXPR, TREE_TYPE (tem),
                                            unshare_expr (load_rhs)));