aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr23476.c
blob: 9cccde6e9b2e9d4394aefcaa617a39516d734662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int h(int);
int t;
static inline int f(const int i)
{
  int tt = i;
  _Bool a = i < t;
  if (a)
    return h(t);
  return 9;
}
int g(void)
{
  return f(0x7FFFFFFF);
}