diff options
Diffstat (limited to 'clang/test/SemaOpenACC/sub-array.cpp')
-rw-r--r-- | clang/test/SemaOpenACC/sub-array.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/clang/test/SemaOpenACC/sub-array.cpp b/clang/test/SemaOpenACC/sub-array.cpp index 355ac5e..ec92975 100644 --- a/clang/test/SemaOpenACC/sub-array.cpp +++ b/clang/test/SemaOpenACC/sub-array.cpp @@ -61,13 +61,15 @@ void Func(int i, int j) { #pragma acc parallel private(ptr[3:]) while (true); - // expected-error@+1{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is an array of unknown bound}} + // expected-error@+2{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is an array of unknown bound}} + // expected-warning@+1{{variable of array type 'int[i]' referenced in OpenACC 'private' clause does not have constant bounds; initialization will happen after decay to pointer}} #pragma acc parallel private(VLA[3:]) while (true); #pragma acc parallel private(ptr[:3]) while (true); + // expected-warning@+1{{variable of array type 'int[i]' referenced in OpenACC 'private' clause does not have constant bounds; initialization will happen after decay to pointer}} #pragma acc parallel private(VLA[:3]) while (true); @@ -159,11 +161,13 @@ void Templ(int i){ // expected-error@+1{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is not an array}} #pragma acc parallel private(ptr[Conv:]) while (true); - // expected-error@+1{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is an array of unknown bound}} + // expected-error@+2{{OpenACC sub-array length is unspecified and cannot be inferred because the subscripted value is an array of unknown bound}} + // expected-warning@+1{{variable of array type 'int[i]' referenced in OpenACC 'private' clause does not have constant bounds; initialization will happen after decay to pointer}} #pragma acc parallel private(VLA[Conv:]) while (true); #pragma acc parallel private(ptr[:Conv]) while (true); + // expected-warning@+1{{variable of array type 'int[i]' referenced in OpenACC 'private' clause does not have constant bounds; initialization will happen after decay to pointer}} #pragma acc parallel private(VLA[:Conv]) while (true); |