blob: 40c6e8cd69015680d56763b6fc897132054fcf34 [file] [log] [blame]
/* { dg-do compile } */
short *m;
void test()
{
short x = 128;
unsigned int i;
for (i = 0; i < 128; ++i, x = (unsigned short)x + 1)
m[i] = x;
}