aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr55569.c
blob: cffbcfc7521825bbc9ae79a171981b2c8762e2d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-options "-ftree-vectorize" } */
int *bar (void);

void
foo (void)
{
  long x;
  int *y = bar ();
    for (x = -1 / sizeof (int); x; --x, ++y)
       *y = 0;
}