diff options
author | Brad Smith <brad@comstyle.com> | 2017-07-17 01:06:46 +0000 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2017-07-17 01:06:46 +0000 |
commit | 9466a84a4ef38b4c8348c5f3b4b5c639faa1d576 (patch) | |
tree | f716af622bd481355d5c3f2de2447dd1240008cc | |
parent | 733fe193d301d78e2ce2279d042ee2859c8a3f74 (diff) | |
download | bcm5719-llvm-9466a84a4ef38b4c8348c5f3b4b5c639faa1d576.tar.gz bcm5719-llvm-9466a84a4ef38b4c8348c5f3b4b5c639faa1d576.zip |
Enable TLS support on OpenBSD.
llvm-svn: 308156
-rw-r--r-- | clang/test/Sema/tls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Sema/tls.c b/clang/test/Sema/tls.c index a3fdc8ea513..6d10363305f 100644 --- a/clang/test/Sema/tls.c +++ b/clang/test/Sema/tls.c @@ -12,9 +12,9 @@ // 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 +// OpenBSD suppports 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 suppport TLS. // RUN: not %clang_cc1 -triple i586-pc-haiku -fsyntax-only %s |