aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr83585.c
blob: 2a9cf252eda17d03c273278857550ef2630773f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR debug/83585 */
/* { dg-do assemble } */
/* { dg-options "-std=gnu89 -O2 -g -fno-tree-dce -fno-guess-branch-probability" } */

int
foo (int x)
{
  int a, b;
  for (a = 0; a < 2; ++a)
    if (x != 0)
      {
        for (b = 0; b < 2; ++b)
          ;
        return 0;
      }

  return;
}