blob: d11239548f6806fc0956bb6c22403c638d67f45f (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC" } */
/* { dg-require-effective-target tls } */
extern __thread int *__libc_resp;
int
__res_init(void) {
return *__libc_resp;
}
|