aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr103317-1.c
blob: f9d145e0da9c968acd9e305af5ba56141d253d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int a, b;
char c;
void
d (void)
{
  char e = c;
  if (b)
    if (c < 16 - 11)
      e = 16 - 11;
  if (e > 8)
    e = 8;
  a = e;
}