1/* Test accessing TLS based variable without any debug info compiled.  */
2
3#include <pthread.h>
4
5__thread int thread_local = 42;
6
7int main(void)
8{
9  return 0;
10}
11