summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-02-06 22:58:30 -0600
committerAustin Seipp <austin@well-typed.com>2014-02-06 22:58:36 -0600
commitb4eb630c7480bc56c673a463f274aec18e237e8c (patch)
tree25efcf4c957b7d8c7d1b082316860291078d70fa /rts
parent298a25bdfd02bb591fde2dd0590bd7af81a91b94 (diff)
downloadhaskell-b4eb630c7480bc56c673a463f274aec18e237e8c.tar.gz
Remove ios_HOST check for GCTDecl.h
Following 298a25bdf and #8722 as Peter mentioned, this probably isn't needed anymore. Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts')
-rw-r--r--rts/sm/GCTDecl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/GCTDecl.h b/rts/sm/GCTDecl.h
index 2489430dda..5602cb8771 100644
--- a/rts/sm/GCTDecl.h
+++ b/rts/sm/GCTDecl.h
@@ -57,7 +57,7 @@ extern StgWord8 the_gc_thread[];
Also, the iOS Clang compiler doesn't support __thread either for
some bizarre reason, so there's not much we can do about that... */
-#if (defined(llvm_CC_FLAVOR) && (CC_SUPPORTS_TLS == 0)) || defined(ios_HOST_OS)
+#if defined(llvm_CC_FLAVOR) && (CC_SUPPORTS_TLS == 0)
#define gct ((gc_thread *)(pthread_getspecific(gctKey)))
#define SET_GCT(to) (pthread_setspecific(gctKey, to))
#define DECLARE_GCT ThreadLocalKey gctKey;