mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 21:56:04 +00:00

Derived from D49481, but added tests and simplified the diff a bit; isPIEDefault can just be removed. Also looking through their upstream patches I noticed PIC is also enabled. Reviewed By: nielx Differential Revision: https://reviews.llvm.org/D159390
24 lines
852 B
C
24 lines
852 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 supports TLS.
|
|
// RUN: %clang_cc1 -triple x86_64-pc-openbsd -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple i386-pc-openbsd -fsyntax-only %s
|
|
|
|
// Haiku supports TLS.
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-haiku -fsyntax-only %s
|
|
// RUN: %clang_cc1 -triple i586-pc-haiku -fsyntax-only %s
|
|
|
|
__thread int x;
|