summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr81203.c
blob: 5c9eaf569e7ed3fe00a2002d5930def653b1f934 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

int a;
int b()
{
  int c, d;
  if (a)
    d = b();
  return 1 + c + d;
}