Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / c-c++-common / pr89566.c
blobd96765653596c4b8dd7a913dc12529064993b7b2
1 /* PR tree-optimization/89566 */
2 /* { dg-do compile } */
4 typedef struct FILE { int i; } FILE;
5 #ifdef __cplusplus
6 extern "C"
7 #endif
8 int fprintf (FILE *, const char *, ...);
10 int
11 main ()
13 ((void (*)()) fprintf) (); // { dg-warning "function called through a non-compatible type" "" { target c } }
14 return 0;