diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2015-12-23 12:01:18 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2015-12-23 12:01:18 +0100 |
commit | c7b48c8ae5a68e227e0e917ce32533b8d571bf9b (patch) | |
tree | 35d28c7390d3ab361c0b04f4531b9f00b23c98a4 /gcc/tree-nested.c | |
parent | e013d90cf66c85f64106cf0a4a3398cadb4812e1 (diff) | |
download | gcc-c7b48c8ae5a68e227e0e917ce32533b8d571bf9b.zip gcc-c7b48c8ae5a68e227e0e917ce32533b8d571bf9b.tar.gz gcc-c7b48c8ae5a68e227e0e917ce32533b8d571bf9b.tar.bz2 |
Merge OMP_CLAUSE_USE_DEVICE into OMP_CLAUSE_USE_DEVICE_PTR
gcc/c/
* c-parser.c (c_parser_oacc_clause_use_device): Merge function
into...
(c_parser_omp_clause_use_device_ptr): ... this function. Adjust
all users.
gcc/
* tree-core.h (enum omp_clause_code): Merge OMP_CLAUSE_USE_DEVICE
into OMP_CLAUSE_USE_DEVICE_PTR. Adjust all users.
From-SVN: r231926
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r-- | gcc/tree-nested.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c index 3a9479a..8211a12 100644 --- a/gcc/tree-nested.c +++ b/gcc/tree-nested.c @@ -1072,7 +1072,6 @@ convert_nonlocal_omp_clauses (tree *pclauses, struct walk_stmt_info *wi) case OMP_CLAUSE_SHARED: case OMP_CLAUSE_TO_DECLARE: case OMP_CLAUSE_LINK: - case OMP_CLAUSE_USE_DEVICE: case OMP_CLAUSE_USE_DEVICE_PTR: case OMP_CLAUSE_IS_DEVICE_PTR: do_decl_clause: @@ -1744,7 +1743,6 @@ convert_local_omp_clauses (tree *pclauses, struct walk_stmt_info *wi) case OMP_CLAUSE_SHARED: case OMP_CLAUSE_TO_DECLARE: case OMP_CLAUSE_LINK: - case OMP_CLAUSE_USE_DEVICE: case OMP_CLAUSE_USE_DEVICE_PTR: case OMP_CLAUSE_IS_DEVICE_PTR: do_decl_clause: |