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