blob: cffbcfc7521825bbc9ae79a171981b2c8762e2d4 [file] [log] [blame]
/* { 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;
}