target-supports.exp (check_effective_target_cilkplus): Not nvptx.

* lib/target-supports.exp (check_effective_target_cilkplus): Not nvptx.
	* c-c++-common/attr-simd-3.c: Require cilkplus.
	* gcc.dg/graphite/id-28.c: Likewise.

From-SVN: r231838
This commit is contained in:
Nathan Sidwell 2015-12-18 21:14:58 +00:00 committed by Nathan Sidwell
parent 15113b03f1
commit e8f47b663f
4 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2015-12-18 Nathan Sidwell <nathan@acm.org>
* lib/target-supports.exp (check_effective_target_cilkplus): Not nvptx.
* c-c++-common/attr-simd-3.c: Require cilkplus.
* gcc.dg/graphite/id-28.c: Likewise.
2015-12-18 Bernd Schmidt <bschmidt@redhat.com>
* gcc.dg/debug/dwarf2/prod-options.c: New test.

View File

@ -1,6 +1,5 @@
/* { dg-do compile } */
/* { dg-do compile { target cilkplus } } */
/* { dg-options "-fcilkplus" } */
/* { dg-prune-output "undeclared here \\(not in a function\\)|\[^\n\r\]* was not declared in this scope" } */
/* { dg-require-effective-target pthread } */
void f () __attribute__((__simd__, __vector__)); /* { dg-error "in the same function marked as a Cilk Plus" "PR68158" } */

View File

@ -1,5 +1,5 @@
/* { dg-do compile { target cilkplus } } */
/* { dg-options "-fcilkplus -floop-nest-optimize -O3" } */
/* { dg-require-effective-target pthread } */
#if HAVE_IO
#include <stdio.h>

View File

@ -1441,6 +1441,12 @@ proc check_effective_target_cilkplus { } {
if { [istarget avr-*-*] } {
return 0;
}
# No pthreads on NVPTX
if { [istarget nvptx-*-*] } {
return 0;
}
return 1
}