blob: 2a53c8039571ea3af08b67af455cdc42d9381b7e [file] [log] [blame]
/* { dg-options "-O1 -ftree-vectorize" } */
int *bar (void);
void
foo (void)
{
long x;
int *y = bar ();
for (x = -1 / sizeof (int); x; --x, ++y)
*y = 0;
}