2020-07-22 22:14:00 +08:00
// RUN: %clang_cc1 -verify=expected,lt50,lt51 -fopenmp -fopenmp-version=45 %s -Wno-openmp-mapping -Wuninitialized
// RUN: %clang_cc1 -verify=expected,ge50,lt51 -fopenmp -fopenmp-version=50 %s -Wno-openmp-mapping -Wuninitialized
// RUN: %clang_cc1 -verify=expected,ge50,ge51 -fopenmp -fopenmp-version=51 %s -Wno-openmp-mapping -Wuninitialized
2016-07-21 06:57:10 +08:00
2020-07-22 22:14:00 +08:00
// RUN: %clang_cc1 -verify=expected,lt50,lt51 -fopenmp-simd -fopenmp-version=45 %s -Wno-openmp-mapping -Wuninitialized
// RUN: %clang_cc1 -verify=expected,ge50,lt51 -fopenmp-simd -fopenmp-version=50 %s -Wno-openmp-mapping -Wuninitialized
// RUN: %clang_cc1 -verify=expected,ge50,ge51 -fopenmp-simd -fopenmp-version=51 %s -Wno-openmp-mapping -Wuninitialized
2017-12-30 02:07:07 +08:00
2016-07-21 06:57:10 +08:00
void foo ( ) {
}
bool foobool ( int argc ) {
return argc ;
}
2019-08-28 22:55:08 +08:00
void xxx ( int argc ) {
int map ; // expected-note {{initialize the variable 'map' to silence this warning}}
# pragma omp target simd map(to: map) // expected-warning {{variable 'map' is uninitialized when used here}}
for ( int i = 0 ; i < 10 ; + + i )
;
}
2021-08-04 01:35:04 +08:00
struct S1 ; // expected-note 2 {{declared here}} // expected-note 3 {{forward declaration of 'S1'}}
2016-07-21 06:57:10 +08:00
extern S1 a ;
class S2 {
mutable int a ;
public :
S2 ( ) : a ( 0 ) { }
S2 ( S2 & s2 ) : a ( s2 . a ) { }
2017-09-13 19:12:35 +08:00
static float S2s ;
static const float S2sc ;
2016-07-21 06:57:10 +08:00
} ;
const float S2 : : S2sc = 0 ;
const S2 b ;
const S2 ba [ 5 ] ;
class S3 {
int a ;
public :
S3 ( ) : a ( 0 ) { }
S3 ( S3 & s3 ) : a ( s3 . a ) { }
} ;
const S3 c ;
const S3 ca [ 5 ] ;
extern const int f ;
class S4 {
int a ;
S4 ( ) ;
S4 ( const S4 & s4 ) ;
public :
S4 ( int v ) : a ( v ) { }
} ;
class S5 {
int a ;
S5 ( ) : a ( 0 ) { }
S5 ( const S5 & s5 ) : a ( s5 . a ) { }
public :
S5 ( int v ) : a ( v ) { }
} ;
S3 h ;
# pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
typedef int from ;
template < typename T , int I > // expected-note {{declared here}}
T tmain ( T argc ) {
const T d = 5 ;
const T da [ 5 ] = { 0 } ;
S4 e ( 4 ) ;
S5 g ( 5 ) ;
T i , t [ 20 ] ;
T & j = i ;
T * k = & j ;
T x ;
T y ;
T to , tofrom , always ;
const T ( & l ) [ 5 ] = da ;
# pragma omp target simd map // expected-error {{expected '(' after 'map'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map() // expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(alloc) // expected-error {{use of undeclared identifier 'alloc'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected ',' or ')' in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to:) // expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(from: argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(x: y) // expected-error {{incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(tofrom: t[:I])
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(T: a) // expected-error {{incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete'}} expected-error {{incomplete type 'S1' where a complete type is required}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(T) // expected-error {{'T' does not refer to a value}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2020-07-22 22:14:00 +08:00
// ge50-error@+2 2 {{expected addressable lvalue in 'map' clause}}
// lt50-error@+1 2 {{expected expression containing only member accesses and/or array sections based on named variables}}
# pragma omp target simd map(I)
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2s)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2sc)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to: x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to: to)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to, x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to x) // expected-error {{expected ',' or ')' in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2020-07-22 22:14:00 +08:00
// ge50-error@+3 2 {{expected addressable lvalue in 'map' clause}}
// lt50-error@+2 2 {{expected expression containing only member accesses and/or array sections based on named variables}}
2020-06-25 15:01:15 +08:00
# pragma omp target simd map(tofrom \
2020-07-22 22:14:00 +08:00
: argc > 0 ? x : y )
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(argc)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S1) // expected-error {{'S1' does not refer to a value}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2017-09-13 19:12:35 +08:00
# pragma omp target simd map(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2017-09-13 19:12:35 +08:00
# pragma omp target simd map(ba)
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(ca)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2s)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2sc)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(e, g)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(h) // expected-error {{threadprivate variables are not allowed in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
# pragma omp target simd map(k), map(k) // lt50-error 2 {{variable already marked as mapped in current construct}} lt50-note 2 {{used here}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
# pragma omp target simd map(k), map(k[:5]) // lt50-error 2 {{pointer cannot be mapped along with a section derived from itself}} lt50-note 2 {{used here}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da[:4])
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
# pragma omp target data map(k, j, l) // lt50-note 2 {{used here}}
# pragma omp target simd map(k[:4]) // lt50-error 2 {{pointer cannot be mapped along with a section derived from itself}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(j)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
# pragma omp target simd map(l) map(l[:5]) // lt50-error 2 {{variable already marked as mapped in current construct}} lt50-note 2 {{used here}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
# pragma omp target data map(k[:4], j, l[:5]) // lt50-note 2 {{used here}}
{
# pragma omp target simd map(k) // lt50-error 2 {{pointer cannot be mapped along with a section derived from itself}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
2016-07-21 06:57:10 +08:00
# pragma omp target simd map(j)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(l) // OK
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
}
# pragma omp target simd map(always, tofrom: x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(always: x) // expected-error {{missing map type}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
[OpenMP][OpenACC] Implement `ompx_hold` map type modifier extension in Clang (1/2)
This patch implements Clang support for an original OpenMP extension
we have developed to support OpenACC: the `ompx_hold` map type
modifier. The next patch in this series, D106510, implements OpenMP
runtime support.
Consider the following example:
```
#pragma omp target data map(ompx_hold, tofrom: x) // holds onto mapping of x
{
foo(); // might have map(delete: x)
#pragma omp target map(present, alloc: x) // x is guaranteed to be present
printf("%d\n", x);
}
```
The `ompx_hold` map type modifier above specifies that the `target
data` directive holds onto the mapping for `x` throughout the
associated region regardless of any `target exit data` directives
executed during the call to `foo`. Thus, the presence assertion for
`x` at the enclosed `target` construct cannot fail. (As usual, the
standard OpenMP reference count for `x` must also reach zero before
the data is unmapped.)
Justification for inclusion in Clang and LLVM's OpenMP runtime:
* The `ompx_hold` modifier supports OpenACC functionality (structured
reference count) that cannot be achieved in standard OpenMP, as of
5.1.
* The runtime implementation for `ompx_hold` (next patch) will thus be
used by Flang's OpenACC support.
* The Clang implementation for `ompx_hold` (this patch) as well as the
runtime implementation are required for the Clang OpenACC support
being developed as part of the ECP Clacc project, which translates
OpenACC to OpenMP at the directive AST level. These patches are the
first step in upstreaming OpenACC functionality from Clacc.
* The Clang implementation for `ompx_hold` is also used by the tests
in the runtime implementation. That syntactic support makes the
tests more readable than low-level runtime calls can. Moreover,
upstream Flang and Clang do not yet support OpenACC syntax
sufficiently for writing the tests.
* More generally, the Clang implementation enables a clean separation
of concerns between OpenACC and OpenMP development in LLVM. That
is, LLVM's OpenMP developers can discuss, modify, and debug LLVM's
extended OpenMP implementation and test suite without directly
considering OpenACC's language and execution model, which can be
handled by LLVM's OpenACC developers.
* OpenMP users might find the `ompx_hold` modifier useful, as in the
above example.
See new documentation introduced by this patch in `openmp/docs` for
more detail on the functionality of this extension and its
relationship with OpenACC. For example, it explains how the runtime
must support two reference counts, as specified by OpenACC.
Clang recognizes `ompx_hold` unless `-fno-openmp-extensions`, a new
command-line option introduced by this patch, is specified.
Reviewed By: ABataev, jdoerfert, protze.joachim, grokos
Differential Revision: https://reviews.llvm.org/D106509
2021-09-01 03:17:07 +08:00
// ge51-error@+3 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper', 'present'}}
// lt51-error@+2 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper'}}
2020-07-22 22:14:00 +08:00
// expected-error@+1 {{missing map type}}
# pragma omp target simd map(tofrom, always: x)
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(always, tofrom: always, tofrom, x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(tofrom j) // expected-error {{expected ',' or ')' in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
return 0 ;
}
int main ( int argc , char * * argv ) {
const int d = 5 ;
const int da [ 5 ] = { 0 } ;
S4 e ( 4 ) ;
S5 g ( 5 ) ;
int i ;
int & j = i ;
int * k = & j ;
int x ;
int y ;
int to , tofrom , always ;
const int ( & l ) [ 5 ] = da ;
# pragma omp target simd map // expected-error {{expected '(' after 'map'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map() // expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(alloc) // expected-error {{use of undeclared identifier 'alloc'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected ',' or ')' in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to:) // expected-error {{expected expression}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(from: argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(x: y) // expected-error {{incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete'}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to: x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to: to)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to, x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(to x) // expected-error {{expected ',' or ')' in 'map' clause}}
2020-06-25 15:01:15 +08:00
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
2020-07-22 22:14:00 +08:00
// ge50-error@+3 {{expected addressable lvalue in 'map' clause}}
// lt50-error@+2 {{expected expression containing only member accesses and/or array sections based on named variables}}
2020-06-25 15:01:15 +08:00
# pragma omp target simd map(tofrom \
2020-07-22 22:14:00 +08:00
: argc > 0 ? argv [ 1 ] : argv [ 2 ] )
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(argc)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S1) // expected-error {{'S1' does not refer to a value}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2017-09-13 19:12:35 +08:00
# pragma omp target simd map(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(argv[1])
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2017-09-13 19:12:35 +08:00
# pragma omp target simd map(ba)
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(ca)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2s)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(S2::S2sc)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(e, g)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(h) // expected-error {{threadprivate variables are not allowed in 'map' clause}}
2021-02-11 21:10:54 +08:00
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target simd map(k), map(k) // lt50-error {{variable already marked as mapped in current construct}} lt50-note {{used here}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target simd map(k), map(k[:5]) // lt50-error {{pointer cannot be mapped along with a section derived from itself}} lt50-note {{used here}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(da[:4])
2021-02-11 21:10:54 +08:00
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target data map(k, j, l) // lt50-note {{used here}}
# pragma omp target simd map(k[:4]) // lt50-error {{pointer cannot be mapped along with a section derived from itself}}
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(j)
2021-02-11 21:10:54 +08:00
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target simd map(l) map(l[:5]) // lt50-error {{variable already marked as mapped in current construct}} lt50-note {{used here}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target data map(k[:4], j, l[:5]) // lt50-note {{used here}}
{
# pragma omp target simd map(k) // lt50-error {{pointer cannot be mapped along with a section derived from itself}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
2016-07-21 06:57:10 +08:00
# pragma omp target simd map(j)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(l) //
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2021-02-11 21:10:54 +08:00
}
2016-07-21 06:57:10 +08:00
# pragma omp target simd map(always, tofrom: x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(always: x) // expected-error {{missing map type}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
[OpenMP][OpenACC] Implement `ompx_hold` map type modifier extension in Clang (1/2)
This patch implements Clang support for an original OpenMP extension
we have developed to support OpenACC: the `ompx_hold` map type
modifier. The next patch in this series, D106510, implements OpenMP
runtime support.
Consider the following example:
```
#pragma omp target data map(ompx_hold, tofrom: x) // holds onto mapping of x
{
foo(); // might have map(delete: x)
#pragma omp target map(present, alloc: x) // x is guaranteed to be present
printf("%d\n", x);
}
```
The `ompx_hold` map type modifier above specifies that the `target
data` directive holds onto the mapping for `x` throughout the
associated region regardless of any `target exit data` directives
executed during the call to `foo`. Thus, the presence assertion for
`x` at the enclosed `target` construct cannot fail. (As usual, the
standard OpenMP reference count for `x` must also reach zero before
the data is unmapped.)
Justification for inclusion in Clang and LLVM's OpenMP runtime:
* The `ompx_hold` modifier supports OpenACC functionality (structured
reference count) that cannot be achieved in standard OpenMP, as of
5.1.
* The runtime implementation for `ompx_hold` (next patch) will thus be
used by Flang's OpenACC support.
* The Clang implementation for `ompx_hold` (this patch) as well as the
runtime implementation are required for the Clang OpenACC support
being developed as part of the ECP Clacc project, which translates
OpenACC to OpenMP at the directive AST level. These patches are the
first step in upstreaming OpenACC functionality from Clacc.
* The Clang implementation for `ompx_hold` is also used by the tests
in the runtime implementation. That syntactic support makes the
tests more readable than low-level runtime calls can. Moreover,
upstream Flang and Clang do not yet support OpenACC syntax
sufficiently for writing the tests.
* More generally, the Clang implementation enables a clean separation
of concerns between OpenACC and OpenMP development in LLVM. That
is, LLVM's OpenMP developers can discuss, modify, and debug LLVM's
extended OpenMP implementation and test suite without directly
considering OpenACC's language and execution model, which can be
handled by LLVM's OpenACC developers.
* OpenMP users might find the `ompx_hold` modifier useful, as in the
above example.
See new documentation introduced by this patch in `openmp/docs` for
more detail on the functionality of this extension and its
relationship with OpenACC. For example, it explains how the runtime
must support two reference counts, as specified by OpenACC.
Clang recognizes `ompx_hold` unless `-fno-openmp-extensions`, a new
command-line option introduced by this patch, is specified.
Reviewed By: ABataev, jdoerfert, protze.joachim, grokos
Differential Revision: https://reviews.llvm.org/D106509
2021-09-01 03:17:07 +08:00
// ge51-error@+3 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper', 'present'}}
// lt51-error@+2 {{incorrect map type modifier, expected one of: 'always', 'close', 'mapper'}}
2020-07-22 22:14:00 +08:00
// expected-error@+1 {{missing map type}}
# pragma omp target simd map(tofrom, always: x)
2016-07-21 06:57:10 +08:00
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(always, tofrom: always, tofrom, x)
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
# pragma omp target simd map(tofrom j) // expected-error {{expected ',' or ')' in 'map' clause}}
for ( i = 0 ; i < argc ; + + i ) foo ( ) ;
2020-04-07 17:18:44 +08:00
# pragma omp target simd map(delete: j) // expected-error {{map type 'delete' is not allowed for '#pragma omp target simd'}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
# pragma omp target simd map(release: j) // expected-error {{map type 'release' is not allowed for '#pragma omp target simd'}}
for ( i = 0 ; i < argc ; + + i )
foo ( ) ;
2016-07-21 06:57:10 +08:00
return tmain < int , 3 > ( argc ) + tmain < from , 4 > ( argc ) ; // expected-note {{in instantiation of function template specialization 'tmain<int, 3>' requested here}} expected-note {{in instantiation of function template specialization 'tmain<int, 4>' requested here}}
}