PR tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921215-1.c
blob28dccd662f25aa383b01529f561cb75235d10168
1 /* { dg-require-effective-target trampolines } */
3 main()
5 void p(void ((*f) (void ())))
7 void r()
9 foo ();
12 f(r);
15 void q(void ((*f)()))
17 f();
20 p(q);
22 exit(0);
25 foo(){}