diff options
author | Varvara Rainchik <varvara.rainchik@intel.com> | 2014-12-10 13:42:20 +0000 |
---|---|---|
committer | Kirill Yukhin <kyukhin@gcc.gnu.org> | 2014-12-10 13:42:20 +0000 |
commit | f50eecba1389ff9da5112b2aaeb93c6ebaa38afc (patch) | |
tree | 669b9c23b1f8d3be5e8f8ec8a4b43aaee66653da /libgomp/libgomp.h | |
parent | d0d7c3578223567be0795ac70f4c26e788fc2387 (diff) | |
download | gcc-f50eecba1389ff9da5112b2aaeb93c6ebaa38afc.zip gcc-f50eecba1389ff9da5112b2aaeb93c6ebaa38afc.tar.gz gcc-f50eecba1389ff9da5112b2aaeb93c6ebaa38afc.tar.bz2 |
config.h.in: Regenerate.
libgomp/
* config.h.in: Regenerate.
* configure: Regenerate.
* configure.ac: Add GCC_CHECK_EMUTLS.
* libgomp.h: Add check for USE_EMUTLS: this case
is equal to HAVE_TLS.
* team.c: Likewise.
From-SVN: r218576
Diffstat (limited to 'libgomp/libgomp.h')
-rw-r--r-- | libgomp/libgomp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/libgomp.h b/libgomp/libgomp.h index a1482cc..b694356 100644 --- a/libgomp/libgomp.h +++ b/libgomp/libgomp.h @@ -471,7 +471,7 @@ enum gomp_cancel_kind /* ... and here is that TLS data. */ -#ifdef HAVE_TLS +#if defined HAVE_TLS || defined USE_EMUTLS extern __thread struct gomp_thread gomp_tls_data; static inline struct gomp_thread *gomp_thread (void) { |