repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.threads
/
tls-nodebug.c
blob
73d96f0f3cdc15c9dd012533b457f71e4b031cdd
1
/* Test accessing TLS based variable without any debug info compiled. */
2
3
#include <pthread.h>
4
5
__thread
int
thread_local
=
42
;
6
7
int
main
(
void
)
8
{
9
return
0
;
10
}