diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2020-04-08 09:39:43 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2020-04-08 09:39:43 +0200 |
commit | 13e41d8b9d3d7598c72c38acc86a3d97046c8373 (patch) | |
tree | 90000a02958e8b0e36e120c7afcc9b6e839b4c04 /gcc/c/ChangeLog | |
parent | 38c3017f257484a6739e2fba821d95794f7f175c (diff) | |
download | gcc-13e41d8b9d3d7598c72c38acc86a3d97046c8373.zip gcc-13e41d8b9d3d7598c72c38acc86a3d97046c8373.tar.gz gcc-13e41d8b9d3d7598c72c38acc86a3d97046c8373.tar.bz2 |
[C/C++, OpenACC] Reject vars of different scope in acc declare (PR94120)
gcc/c/
PR middle-end/94120
* c-decl.c (c_check_in_current_scope): New function.
* c-tree.h (c_check_in_current_scope): Declare it.
* c-parser.c (c_parser_oacc_declare): Add check that variables
are declared in the same scope as the directive. Fix handling
of namespace vars.
gcc/cp/
PR middle-end/94120
* paser.c (cp_parser_oacc_declare): Add check that variables
are declared in the same scope as the directive.
gcc/testsuite/
PR middle-end/94120
* c-c++-common/goacc/declare-pr94120.c: New.
* g++.dg/declare-pr94120.C: New.
libgomp/testsuite/
PR middle-end/94120
* libgomp.oacc-c++/declare-pr94120.C: New.
Diffstat (limited to 'gcc/c/ChangeLog')
-rw-r--r-- | gcc/c/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index d30d2b0..482a01b 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,12 @@ +2020-04-08 Tobias Burnus <tobias@codesourcery.com> + + PR middle-end/94120 + * c-decl.c (c_check_in_current_scope): New function. + * c-tree.h (c_check_in_current_scope): Declare it. + * c-parser.c (c_parser_oacc_declare): Add check that variables + are declared in the same scope as the directive. Fix handling + of namespace vars. + 2020-04-07 Jakub Jelinek <jakub@redhat.com> PR c++/94512 |