diff options
author | Jakub Jelinek <jakub@redhat.com> | 2020-09-01 09:17:58 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-09-01 09:17:58 +0200 |
commit | a37b0cccf4965f13006d2928f57a71e46e341cf8 (patch) | |
tree | 60b49c420646686d12fd06653a7cb84d40b87007 /gcc/c | |
parent | ef688fdfc614492210ae1b526602b97601444b8f (diff) | |
download | gcc-a37b0cccf4965f13006d2928f57a71e46e341cf8.zip gcc-a37b0cccf4965f13006d2928f57a71e46e341cf8.tar.gz gcc-a37b0cccf4965f13006d2928f57a71e46e341cf8.tar.bz2 |
openmp: Check for PARM_DECL before using C_ARRAY_PARAMETER or DECL_ARRAY_PARAMETER_P [PR96867]
The C++ macro performs a PARM_DECL_CHECK, so will ICE if not tested on a PARM_DECL,
C_ARRAY_PARAMETER doesn't, but probably should, otherwise it is testing e.g.
C_DECL_VARIABLE_SIZE on VAR_DECLs.
2020-09-01 Jakub Jelinek <jakub@redhat.com>
PR c++/96867
* c-typeck.c (handle_omp_array_sections_1): Test C_ARRAY_PARAMETER
only on PARM_DECLs.
* semantics.c (handle_omp_array_sections_1): Test
DECL_ARRAY_PARAMETER_P only on PARM_DECLs.
* c-c++-common/gomp/pr96867.c: New test.
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/c-typeck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-typeck.c b/gcc/c/c-typeck.c index e158d23..bb27099 100644 --- a/gcc/c/c-typeck.c +++ b/gcc/c/c-typeck.c @@ -13298,7 +13298,7 @@ handle_omp_array_sections_1 (tree c, tree t, vec<tree> &types, { if (length == NULL_TREE) { - if (C_ARRAY_PARAMETER (ret)) + if (TREE_CODE (ret) == PARM_DECL && C_ARRAY_PARAMETER (ret)) error_at (OMP_CLAUSE_LOCATION (c), "for array function parameter length expression " "must be specified"); |