[llvm] r256457 - Prune the feature "tls". No one is using it since TLS is enabled for Cygwin.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 26 22:14:33 PST 2015


Author: chapuni
Date: Sun Dec 27 00:14:33 2015
New Revision: 256457

URL: http://llvm.org/viewvc/llvm-project?rev=256457&view=rev
Log:
Prune the feature "tls". No one is using it since TLS is enabled for Cygwin.

Modified:
    llvm/trunk/test/lit.cfg

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=256457&r1=256456&r2=256457&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Sun Dec 27 00:14:33 2015
@@ -373,10 +373,6 @@ if config.target_triple:
 if config.host_triple == config.target_triple:
     config.available_features.add("native")
 
-# Not set for targeting tls-incapable targets.
-if not re.match(r'.*-cygwin$', config.target_triple):
-    config.available_features.add('tls')
-
 import subprocess
 
 def have_ld_plugin_support():




More information about the llvm-commits mailing list