repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr47369-1.c
blob
117b03bfa3cfb2d7ef40894b023395e20d68e890
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
}