]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr47369-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr47369-1.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-options "-O2 -fPIC" } */
4
5 struct FILE
6 {
7 int x;
8 };
9 extern struct FILE __sF[];
10 extern void bar (struct FILE *);
11 void dlmalloc_stats() {
12 bar ((&__sF[2]));
13 }