* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git] / gdb / testsuite / gdb.threads / tls-nodebug.c
blob73d96f0f3cdc15c9dd012533b457f71e4b031cdd
1 /* Test accessing TLS based variable without any debug info compiled. */
3 #include <pthread.h>
5 __thread int thread_local = 42;
7 int main(void)
9 return 0;