re PR tree-optimization/81249 (ICE: error: incompatible types in PHI argument 0)
authorRichard Biener <rguenther@suse.de>
Fri, 30 Jun 2017 08:08:33 +0000 (08:08 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Fri, 30 Jun 2017 08:08:33 +0000 (08:08 +0000)
2017-06-30  Richard Biener  <rguenther@suse.de>

PR tree-optimization/81249
* tree-vect-loop.c (vect_create_epilog_for_reduction): Convert
condition reduction result to original scalar type.

* g++.dg/torture/pr81249.C: New testcase.

From-SVN: r249831

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr81249.C [new file with mode: 0644]
gcc/tree-vect-loop.c

index ebb0bf32bdc720aaa0ebaf270b942cf87358ae16..eab752a5e13121eb443a2248dbf5e59d3d691613 100644 (file)
@@ -1,3 +1,9 @@
+2017-06-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/81249
+       * tree-vect-loop.c (vect_create_epilog_for_reduction): Convert
+       condition reduction result to original scalar type.
+
 2017-06-30  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
 
        * profile-count.h (enum profile_quality): Fix typos and whitespace
index f3dad9ec6f6787cb3c29991efc4351d8bca00d4c..9b92e447724d406ac235f2abff05788af2d44d53 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/81249
+       * g++.dg/torture/pr81249.C: New testcase.
+
 2017-06-29  Paolo Carlini  <paolo.carlini@oracle.com>
 
        * g++.dg/cpp0x/inh-ctor3.C: Adjust for dg-message vs dg-error.
diff --git a/gcc/testsuite/g++.dg/torture/pr81249.C b/gcc/testsuite/g++.dg/torture/pr81249.C
new file mode 100644 (file)
index 0000000..7bf617b
--- /dev/null
@@ -0,0 +1,25 @@
+/* { dg-do compile } */
+/* { dg-additional-options "-mavx2 -mprefer-avx128" { target x86_64-*-* i?86-*-* } } */
+
+typedef struct rtx_def *rtx;
+union rtunion {
+    rtx rt_rtx;
+};
+struct rtx_def {
+    struct {
+       rtunion fld[0];
+    } u;
+    rtx elem[];
+} a;
+int b, c, d;
+rtx e;
+int main() {
+    for (;;) {
+       d = 0;
+       for (; d < b; d++)
+         if (a.elem[d])
+           e = a.elem[d]->u.fld[1].rt_rtx;
+       if (e)
+         c = 0;
+    }
+}
index 576a42fc42fe3f09de96e7fcd88bf87283624d8b..bab0cdd3f5145f45e0089582a6beefec05f8c550 100644 (file)
@@ -4835,12 +4835,9 @@ vect_create_epilog_for_reduction (vec<tree> vect_defs, gimple *stmt,
 
       /* Convert the reduced value back to the result type and set as the
         result.  */
-      tree data_reduc_cast = build1 (VIEW_CONVERT_EXPR, scalar_type,
-                                    data_reduc);
-      epilog_stmt = gimple_build_assign (new_scalar_dest, data_reduc_cast);
-      new_temp = make_ssa_name (new_scalar_dest, epilog_stmt);
-      gimple_assign_set_lhs (epilog_stmt, new_temp);
-      gsi_insert_before (&exit_gsi, epilog_stmt, GSI_SAME_STMT);
+      gimple_seq stmts = NULL;
+      new_temp = gimple_convert (&stmts, scalar_type, data_reduc);
+      gsi_insert_seq_before (&exit_gsi, stmts, GSI_SAME_STMT);
       scalar_results.safe_push (new_temp);
     }
   else if (STMT_VINFO_VEC_REDUCTION_TYPE (stmt_info) == COND_REDUCTION
@@ -4905,6 +4902,11 @@ vect_create_epilog_for_reduction (vec<tree> vect_defs, gimple *stmt,
              val = new_val;
            }
        }
+      /* Convert the reduced value back to the result type and set as the
+        result.  */
+      gimple_seq stmts = NULL;
+      val = gimple_convert (&stmts, scalar_type, val);
+      gsi_insert_seq_before (&exit_gsi, stmts, GSI_SAME_STMT);
       scalar_results.safe_push (val);
     }