PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr51012-1.c
blob36c788bd5266411ee2f47726b4f0fa91db1922d2
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-early-inlining -fno-ipa-cp" } */
4 float baz (void)
6 return 0;
9 static inline int bar (int (*ibaz) (void))
11 return ibaz ();
14 void foo (void)
16 bar((int (*)(void))baz);