diff options
author | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-10 13:42:20 +0000 |
---|---|---|
committer | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-10 13:42:20 +0000 |
commit | 4b9d11e9bb503a98c652a9bd7f685e2f04403d65 (patch) | |
tree | 669b9c23b1f8d3be5e8f8ec8a4b43aaee66653da /libgomp/libgomp.h | |
parent | c090a78fe0fefd8c55e92bb269349dc576b1f6f5 (diff) | |
download | gcc-4b9d11e9bb503a98c652a9bd7f685e2f04403d65.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218576 138bc75d-0d04-0410-961f-82ee72b054a4
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 a1482ccfbf4..b694356f67e 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) { |