blob: 0c78d32f471db9847dff95054a856995224490e5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */
int a, b;
void d()
{
int c = sizeof(int);
for (; a; a++)
c *= sizeof(int);
c *= sizeof(int);
b = c;
}