blob: 6d78327787b8b49a3fd907d6214e58df07745f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* PR target/66470 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-require-effective-target tls } */
extern __thread unsigned long long a[10];
extern __thread struct S { int a, b; } b[10];
unsigned long long
foo (long x)
{
return a[x];
}
struct S
bar (long x)
{
return b[x];
}
#ifdef __SIZEOF_INT128__
extern __thread unsigned __int128 c[10];
unsigned __int128
baz (long x)
{
return c[x];
}
#endif
|