aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr113210.c
blob: 0aa07803a7eecce26290b6523a7d21a3adfe1eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/113210 */

unsigned char a, c;
unsigned short b;

void
foo (void)
{
  c = a + 255;
  b = c;
  while (++b > 256)
    ;
}