blob: 0aa07803a7eecce26290b6523a7d21a3adfe1eaf [file] [log] [blame]
/* PR tree-optimization/113210 */
unsigned char a, c;
unsigned short b;
void
foo (void)
{
c = a + 255;
b = c;
while (++b > 256)
;
}