PR tree-optimization/71854
* gcc.dg/vect/pr71854.c: New test.
From-SVN: r244534
+2017-01-17 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/71854
+ * gcc.dg/vect/pr71854.c: New test.
+
2017-01-17 Martin Liska <mliska@suse.cz>
PR ipa/71207
--- /dev/null
+/* PR tree-optimization/71854 */
+/* { dg-do compile } */
+/* { dg-additional-options "-O3 -ftree-loop-if-convert" } */
+
+char a, f = 1;
+int b, c, e[8];
+short d;
+
+short
+foo (short x)
+{
+ return x >= 2 || x >> c ? x : x << c;
+}
+
+int
+main ()
+{
+ while (f)
+ for (d = 0; d <= 7; d++)
+ {
+ f = 7 >> b ? a : a << b;
+ e[d] = foo (f);
+ }
+ return 0;
+}