| // 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 i, z; | 
 | #pragma omp target teams distribute device // expected-error {{expected '(' after 'device'}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device () // expected-error {{expected expression}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams distribute' are ignored}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (argc + argc + z) | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (argc), device (argc+1) // expected-error {{directive '#pragma omp target teams distribute' cannot contain more than one 'device' clause}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (S1) // expected-error {{'S1' does not refer to a value}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer value}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (-10u) | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 | #pragma omp target teams distribute device (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}} | 
 |   for (i = 0; i < argc; ++i) foo(); | 
 |  | 
 |   return 0; | 
 | } |