./:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr23476.c
blob9cccde6e9b2e9d4394aefcaa617a39516d734662
1 int h(int);
2 int t;
3 static inline int f(const int i)
5 int tt = i;
6 _Bool a = i < t;
7 if (a)
8 return h(t);
9 return 9;
11 int g(void)
13 return f(0x7FFFFFFF);