From: Mike Stump Date: Mon, 4 Jan 2016 20:01:15 +0000 (+0000) Subject: (check_effective_target_cilkplus): Remove special case for NVPTX. X-Git-Tag: basepoints/gcc-7~1829 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ece61b6444f7a58d3b56fa32d391bdc982bcea8;p=thirdparty%2Fgcc.git (check_effective_target_cilkplus): Remove special case for NVPTX. From-SVN: r232063 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5ffdcaddb936..e2a62e15e937 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 08306df03a0e..4030b35fe72e 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -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; }