[flang][OpenMP] Parser support for the unroll construct (5.1)

added parser support for the unroll construct

Reviewed By: kiranchandramohan

Differential Revision: https://reviews.llvm.org/D138229
This commit is contained in:
Abid Malik
2023-01-17 11:54:23 +00:00
committed by Kiran Chandramohan
parent 4e390073aa
commit 84bf4b7cdf
6 changed files with 63 additions and 3 deletions

View File

@@ -2153,6 +2153,9 @@ public:
case llvm::omp::Directive::OMPD_tile:
Word("TILE ");
break;
case llvm::omp::Directive::OMPD_unroll:
Word("UNROLL ");
break;
default:
break;
}