Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/tls.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// 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 does not support TLS. // RUN: not %clang_cc1 -triple i586-pc-haiku -fsyntax-only %s __thread int x;