1  __thread char bar[10];
       2  
       3  void
       4  set_bar (int i, int v)
       5  {
       6    bar[i] = v;
       7  }
       1  __thread char bar[10];
       2  
       3  void
       4  set_bar (int i, int v)
       5  {
       6    bar[i] = v;
       7  }