aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaExceptionSpec.cpp
diff options
context:
space:
mode:
authorMike Rice <michael.p.rice@intel.com>2022-03-22 10:55:21 -0700
committerMike Rice <michael.p.rice@intel.com>2022-03-22 13:55:47 -0700
commit2cedaee6f7387b39f7a534883050d66fd78e15a4 (patch)
treef67e2c6f711e6f932a145b98570b14fe5c24f590 /clang/lib/Sema/SemaExceptionSpec.cpp
parent72c1a0d9c224ac139ef5dae63f75ae8bbfbaa652 (diff)
downloadllvm-2cedaee6f7387b39f7a534883050d66fd78e15a4.zip
llvm-2cedaee6f7387b39f7a534883050d66fd78e15a4.tar.gz
llvm-2cedaee6f7387b39f7a534883050d66fd78e15a4.tar.bz2
[OpenMP] Initial parsing/sema for the 'omp parallel loop' construct
Adds basic parsing/sema/serialization support for the #pragma omp parallel loop directive. Differential Revision: https://reviews.llvm.org/D122247
Diffstat (limited to 'clang/lib/Sema/SemaExceptionSpec.cpp')
-rw-r--r--clang/lib/Sema/SemaExceptionSpec.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaExceptionSpec.cpp b/clang/lib/Sema/SemaExceptionSpec.cpp
index 527c4ba..19b2fc7 100644
--- a/clang/lib/Sema/SemaExceptionSpec.cpp
+++ b/clang/lib/Sema/SemaExceptionSpec.cpp
@@ -1501,6 +1501,7 @@ CanThrowResult Sema::canThrow(const Stmt *S) {
case Stmt::OMPGenericLoopDirectiveClass:
case Stmt::OMPTeamsGenericLoopDirectiveClass:
case Stmt::OMPTargetTeamsGenericLoopDirectiveClass:
+ case Stmt::OMPParallelGenericLoopDirectiveClass:
case Stmt::ReturnStmtClass:
case Stmt::SEHExceptStmtClass:
case Stmt::SEHFinallyStmtClass: