Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
tst-tlsmod13a.c
blob: ca4eaccbff1179947735a95d1a22267432d5f4ac [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
1
__thread
int
b
[
2
]
__attribute__
((
tls_model
(
"initial-exec"
)));
2
3
extern
int
foo
(
void
);
4
5
int
6
bar
(
void
)
7
{
8
return
foo
()
+
b
[
0
];
9
}