OSDN Git Service

2012-04-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr47372-1.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-options "-O2 -fPIC -g" } */
4
5 typedef struct FILE FILE;
6 int _fwalk(int (*)(FILE *));
7 int __sflush(FILE *);
8 int
9 fflush(FILE *fp)
10 {
11   return (_fwalk(__sflush));
12 }