diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-06-01 13:55:35 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-06-01 13:55:35 +0200 |
commit | 268143a480cf8e4142db3ebb2dadaf924f6f3303 (patch) | |
tree | 9aeeb7f3e42057f3b9ed81a63190c2b9c0fab1b3 /gcc/tree.c | |
parent | 4272cd33e14916f16370814f1dcf9b3d31b50893 (diff) | |
download | gcc-268143a480cf8e4142db3ebb2dadaf924f6f3303.zip gcc-268143a480cf8e4142db3ebb2dadaf924f6f3303.tar.gz gcc-268143a480cf8e4142db3ebb2dadaf924f6f3303.tar.bz2 |
Remove the unused OMP_CLAUSE_DEVICE_RESIDENT
gcc/
* tree-core.h (enum omp_clause_code): Remove
OMP_CLAUSE_DEVICE_RESIDENT. Adjust all users.
From-SVN: r236985
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -281,7 +281,6 @@ unsigned const char omp_clause_num_ops[] = 1, /* OMP_CLAUSE_USE_DEVICE_PTR */ 1, /* OMP_CLAUSE_IS_DEVICE_PTR */ 2, /* OMP_CLAUSE__CACHE_ */ - 1, /* OMP_CLAUSE_DEVICE_RESIDENT */ 2, /* OMP_CLAUSE_GANG */ 1, /* OMP_CLAUSE_ASYNC */ 1, /* OMP_CLAUSE_WAIT */ @@ -353,7 +352,6 @@ const char * const omp_clause_code_name[] = "use_device_ptr", "is_device_ptr", "_cache_", - "device_resident", "gang", "async", "wait", @@ -11764,7 +11762,6 @@ walk_tree_1 (tree *tp, walk_tree_fn func, void *data, WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 1)); /* FALLTHRU */ - case OMP_CLAUSE_DEVICE_RESIDENT: case OMP_CLAUSE_ASYNC: case OMP_CLAUSE_WAIT: case OMP_CLAUSE_WORKER: |