| #include <tls.h>#if defined USE_TLS && defined HAVE___THREAD \    && defined HAVE_TLS_MODEL_ATTRIBUTE__thread int b[2] __attribute__ ((tls_model ("initial-exec")));#elseint b[2];#endifextern int foo (void);intbar (void){  return foo () + b[0];}
 |