aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
blob: 4a47e69180fee03ba18010d350a48e507d6be743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do run } */
/* { dg-options "-O3" } */

signed char a;
short b;

int main ()
{
  for (a = 3; a != -1; a -= 5)
    while (b)
      ;
  return 0;
}