summaryrefslogtreecommitdiffstats
path: root/test/Sema/tls.c
blob: 3b2a441bfea821dd7af2c045f4c5ec0df03dead3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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

// FIXME: I thought it was supported actually?
// RUN: not %clang_cc1 -triple x86_64-pc-win32 -fsyntax-only %s
// RUN: not %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

__thread int x;
OpenPOWER on IntegriCloud