aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr92173.c
blob: fcb3548b716987542210ebaf0be76b981b538528 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */

unsigned int
yo (unsigned int o0, signed char s1)
{
  for (s1 = 0; s1 < 1; s1 -= 2)
    o0 += o0;

  return o0 + s1;
}