+2019-11-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92324
+ * tree-vect-loop.c (check_reduction_path): For MIN/MAX require
+ all signed or unsigned operations.
+
2019-11-05 Jan Hubicka <jh@suse.cz>
* hsa-brig.c: Include alloc-pool.h
+2019-11-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92324
+ * gcc.dg/vect/pr92324-3.c: New testcase.
+
2019-11-05 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/91945
--- /dev/null
+#include "tree-vect.h"
+
+int a[1024];
+unsigned b[1024];
+
+int __attribute__((noipa))
+foo (int n)
+{
+ int res = 0;
+ for (int i = 0; i < n; ++i)
+ {
+ res = res > a[i] ? res : a[i];
+ res = res > b[i] ? res : b[i];
+ }
+ return res;
+}
+
+int main ()
+{
+ check_vect ();
+ b[3] = (unsigned)__INT_MAX__ + 1;
+ if (foo (4) != -__INT_MAX__ - 1)
+ __builtin_abort ();
+ return 0;
+}
+
+/* { dg-final { scan-tree-dump-not "vectorized \[1-9\] loops" "vect" } } */
/* Check whether the reduction path detected is valid. */
bool fail = path.length () == 0;
bool neg = false;
+ int sign = -1;
*code = ERROR_MARK;
for (unsigned i = 1; i < path.length (); ++i)
{
TREE_TYPE (gimple_assign_rhs1 (use_stmt))))
;
else if (*code == ERROR_MARK)
- *code = use_code;
+ {
+ *code = use_code;
+ sign = TYPE_SIGN (TREE_TYPE (gimple_assign_lhs (use_stmt)));
+ }
else if (use_code != *code)
{
fail = true;
break;
}
+ else if ((use_code == MIN_EXPR
+ || use_code == MAX_EXPR)
+ && sign != TYPE_SIGN (TREE_TYPE (gimple_assign_lhs (use_stmt))))
+ {
+ fail = true;
+ break;
+ }
}
return ! fail && ! neg && *code != ERROR_MARK;
}