Undo accidental commit to omp-grid.c

The following change accidentally got committed in the previous
commit, r10-7614-g13e41d8b9d3d7598c72c38acc86a3d97046c8373,
among the intended changes. Hence:

Revert:
	gcc/
	* omp-grid.c (grid_eliminate_combined_simd_part): Use
	OMP_CLAUSE_CODE to access the omp clause code.
This commit is contained in:
Tobias Burnus 2020-04-08 10:04:30 +02:00
parent 13e41d8b9d
commit 54cb3baa82

View File

@ -1065,7 +1065,7 @@ grid_eliminate_combined_simd_part (gomp_for *parloop)
while (*pc)
{
tree c = *pc;
switch (OMP_CLAUSE_CODE (c))
switch (TREE_CODE (c))
{
case OMP_CLAUSE_LINEAR:
{