33012f0804a885efa065c9cf1917aa7de9251252
[libfirm] / ir / be / test / thread.c
1 #define __thread   __declspec( thread )
2 __thread int tls_i = 1;
3
4 int test(void) {
5         return tls_i;
6 }