PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr57698.c
bloba9efb429022f33a6ef713c058d8d1deb9801fd21
1 typedef int (*IsAcceptableThis) (const int );
2 inline int
3 fn1 (IsAcceptableThis p1)
5 p1 (0);
6 return 0;
9 __attribute__ ((always_inline))
10 inline int fn2 (const int a)
12 return 0;
15 void
16 fn3 ()
18 fn1 (fn2);