hanchenye-llvm-project/lld/test/elf/Inputs/tlsaddr.c

9 lines
137 B
C

__thread int tls0 = 0;
__thread int tls1 = 0;
__thread int tls2 = 1;
__thread int tls3 = 2;
int main() {
return tls0 + tls1 + tls2;
}