Clang Project

clang_source_code/test/OpenMP/target_teams_distribute_simd_num_teams_messages.cpp
1// RUN: %clang_cc1 -verify -fopenmp -std=c++11 -ferror-limit 100 -o - %s
2
3// RUN: %clang_cc1 -verify -fopenmp-simd -std=c++11 -ferror-limit 100 -o - %s
4
5void foo() {
6}
7
8bool foobool(int argc) {
9  return argc;
10}
11
12struct S1; // expected-note 2 {{declared here}}
13
14template <typename T, int C> // expected-note {{declared here}}
15T tmain(T argc) {
16  char **a;
17#pragma omp target teams distribute simd num_teams(C)
18  for (int i=0; i<100; i++) foo();
19#pragma omp target teams distribute simd num_teams(T) // expected-error {{'T' does not refer to a value}}
20  for (int i=0; i<100; i++) foo();
21#pragma omp target teams distribute simd num_teams // expected-error {{expected '(' after 'num_teams'}}
22  for (int i=0; i<100; i++) foo();
23#pragma omp target teams distribute simd num_teams( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24  for (int i=0; i<100; i++) foo();
25#pragma omp target teams distribute simd num_teams() // expected-error {{expected expression}}
26  for (int i=0; i<100; i++) foo();
27#pragma omp target teams distribute simd num_teams(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
28  for (int i=0; i<100; i++) foo();
29#pragma omp target teams distribute simd num_teams(argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams distribute simd' are ignored}}
30  for (int i=0; i<100; i++) foo();
31#pragma omp target teams distribute simd num_teams(argc > 0 ? a[1] : a[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
32  for (int i=0; i<100; i++) foo();
33#pragma omp target teams distribute simd num_teams(argc + argc)
34  for (int i=0; i<100; i++) foo();
35#pragma omp target teams distribute simd num_teams(argc), num_teams (argc+1) // expected-error {{directive '#pragma omp target teams distribute simd' cannot contain more than one 'num_teams' clause}}
36  for (int i=0; i<100; i++) foo();
37#pragma omp target teams distribute simd num_teams(S1) // expected-error {{'S1' does not refer to a value}}
38  for (int i=0; i<100; i++) foo();
39#pragma omp target teams distribute simd num_teams(-2) // expected-error {{argument to 'num_teams' clause must be a strictly positive integer value}}
40  for (int i=0; i<100; i++) foo();
41#pragma omp target teams distribute simd num_teams(-10u)
42  for (int i=0; i<100; i++) foo();
43#pragma omp target teams distribute simd num_teams(3.14) // expected-error 2 {{expression must have integral or unscoped enumeration type, not 'double'}}
44  for (int i=0; i<100; i++) foo();
45
46  return 0;
47}
48
49int main(int argc, char **argv) {
50#pragma omp target teams distribute simd num_teams // expected-error {{expected '(' after 'num_teams'}}
51  for (int i=0; i<100; i++) foo();
52
53#pragma omp target teams distribute simd num_teams ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
54  for (int i=0; i<100; i++) foo();
55
56#pragma omp target teams distribute simd num_teams () // expected-error {{expected expression}}
57  for (int i=0; i<100; i++) foo();
58
59#pragma omp target teams distribute simd num_teams (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
60  for (int i=0; i<100; i++) foo();
61
62#pragma omp target teams distribute simd num_teams (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams distribute simd' are ignored}}
63  for (int i=0; i<100; i++) foo();
64
65#pragma omp target teams distribute simd num_teams (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
66  for (int i=0; i<100; i++) foo();
67
68#pragma omp target teams distribute simd num_teams (argc + argc)
69  for (int i=0; i<100; i++) foo();
70
71#pragma omp target teams distribute simd num_teams (argc), num_teams (argc+1) // expected-error {{directive '#pragma omp target teams distribute simd' cannot contain more than one 'num_teams' clause}}
72  for (int i=0; i<100; i++) foo();
73
74#pragma omp target teams distribute simd num_teams (S1) // expected-error {{'S1' does not refer to a value}}
75  for (int i=0; i<100; i++) foo();
76
77#pragma omp target teams distribute simd num_teams (-2) // expected-error {{argument to 'num_teams' clause must be a strictly positive integer value}}
78  for (int i=0; i<100; i++) foo();
79
80#pragma omp target teams distribute simd num_teams (-10u)
81  for (int i=0; i<100; i++) foo();
82
83#pragma omp target teams distribute simd num_teams (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}
84  for (int i=0; i<100; i++) foo();
85
86  return tmain<int, 10>(argc); // expected-note {{in instantiation of function template specialization 'tmain<int, 10>' requested here}}
87}
88