]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(check_effective_target_cilkplus): Remove special case for NVPTX.
authorMike Stump <mikestump@comcast.net>
Mon, 4 Jan 2016 20:01:15 +0000 (20:01 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Mon, 4 Jan 2016 20:01:15 +0000 (20:01 +0000)
From-SVN: r232063

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 5ffdcaddb936b3788bb404bc35545487922ff443..e2a62e15e9370e4be5466a919c4c4ffee9c766e2 100644 (file)
@@ -2,6 +2,7 @@
 
        * lib/target-supports.exp (check_effective_target_cilkplus):
        cilkplus targets require pthreads.
+       (check_effective_target_cilkplus): Remove special case for NVPTX.
 
 2016-01-04  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
index 08306df03a0ed6e6a475c26b22eb1dd433d2eb63..4030b35fe72e5ad5991f16179426740fff04f978 100644 (file)
@@ -1442,11 +1442,6 @@ proc check_effective_target_cilkplus { } {
        return 0;
     }
 
-    # No pthreads on NVPTX
-    if { [istarget nvptx-*-*] } {
-       return 0;
-    }
-
     if { ! [check_effective_target_pthread] } {
        return 0;
     }