
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
27 lines
969 B
C
27 lines
969 B
C
// Test that TLS is correctly considered supported or unsupported for the
|
|
// different targets.
|
|
|
|
// Linux supports TLS.
|
|
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple i386-pc-linux-gnu -fsyntax-only %s
|
|
|
|
// Darwin supports TLS since 10.7.
|
|
// RUN: not %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -fsyntax-only %s
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-pc-win32 -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple i386-pc-win32 -fsyntax-only %s
|
|
|
|
// OpenBSD does not suppport TLS.
|
|
// RUN: not %clang_cc1 -triple x86_64-pc-openbsd -fsyntax-only %s
|
|
// RUN: not %clang_cc1 -triple i386-pc-openbsd -fsyntax-only %s
|
|
|
|
// Haiku does not suppport TLS.
|
|
// RUN: not %clang_cc1 -triple i586-pc-haiku -fsyntax-only %s
|
|
|
|
// Bitrig suppports TLS.
|
|
// RUN: %clang_cc1 -triple x86_64-pc-bitrig -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple armv6-unknown-bitrig -fsyntax-only %s
|
|
|
|
__thread int x;
|