summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2011-12-15 20:40:11 +0000
committerdim <dim@FreeBSD.org>2011-12-15 20:40:11 +0000
commitb94ddd938bb1b86c6794c344a33ea3472829372b (patch)
tree9be53b2061bab820cf72fcc01c4eeba5d6c18831 /lib
parent37ef732e3706f181d980062a33f308832cd40d73 (diff)
downloadFreeBSD-src-b94ddd938bb1b86c6794c344a33ea3472829372b.zip
FreeBSD-src-b94ddd938bb1b86c6794c344a33ea3472829372b.tar.gz
Since clang does not support the tls_model attribute used in malloc.c
yet (see LLVM PR 9788), and warns about it, rub it out for now. When clang grows support for this attribute, I will revert this again. MFC after: 1 week
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/malloc.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 5290512..7ef59e4 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -219,7 +219,11 @@ __FBSDID("$FreeBSD$");
# define LG_QUANTUM 4
# define LG_SIZEOF_PTR 2
# define CPU_SPINWAIT __asm__ volatile("pause")
-# define TLS_MODEL __attribute__((tls_model("initial-exec")))
+# ifdef __clang__
+# define TLS_MODEL /* clang does not support tls_model yet */
+# else
+# define TLS_MODEL __attribute__((tls_model("initial-exec")))
+# endif
#endif
#ifdef __ia64__
# define LG_QUANTUM 4
@@ -240,7 +244,11 @@ __FBSDID("$FreeBSD$");
# define LG_QUANTUM 4
# define LG_SIZEOF_PTR 3
# define CPU_SPINWAIT __asm__ volatile("pause")
-# define TLS_MODEL __attribute__((tls_model("initial-exec")))
+# ifdef __clang__
+# define TLS_MODEL /* clang does not support tls_model yet */
+# else
+# define TLS_MODEL __attribute__((tls_model("initial-exec")))
+# endif
#endif
#ifdef __arm__
# define LG_QUANTUM 3
OpenPOWER on IntegriCloud