43 lines
1.8 KiB
C++
43 lines
1.8 KiB
C++
// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp-simd -ferror-limit 100 -o - %s -Wuninitialized
|
|
|
|
void foo() {
|
|
}
|
|
|
|
bool foobool(int argc) {
|
|
return argc;
|
|
}
|
|
|
|
struct S1; // expected-note {{declared here}}
|
|
|
|
int main(int argc, char **argv) {
|
|
int z;
|
|
#pragma omp target teams device // expected-error {{expected '(' after 'device'}}
|
|
foo();
|
|
#pragma omp target teams device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
foo();
|
|
#pragma omp target teams device () // expected-error {{expected expression}}
|
|
foo();
|
|
#pragma omp target teams device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
foo();
|
|
#pragma omp target teams device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}
|
|
foo();
|
|
#pragma omp target teams device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
|
|
foo();
|
|
#pragma omp target teams device (argc + argc + z)
|
|
foo();
|
|
#pragma omp target teams device (argc), device (argc+1) // expected-error {{directive '#pragma omp target teams' cannot contain more than one 'device' clause}}
|
|
foo();
|
|
#pragma omp target teams device (S1) // expected-error {{'S1' does not refer to a value}}
|
|
foo();
|
|
#pragma omp target teams device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer value}}
|
|
foo();
|
|
#pragma omp target teams device (-10u)
|
|
foo();
|
|
#pragma omp target teams device (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}
|
|
foo();
|
|
|
|
return 0;
|
|
}
|