aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaExceptionSpec.cpp
diff options
context:
space:
mode:
authorJennifer Yu <jennifer.yu@intel.com>2022-06-16 16:32:30 -0700
committerJennifer Yu <jennifer.yu@intel.com>2022-06-16 18:01:15 -0700
commitbb83f8e70bd1d56152f02307adacd718cd67e312 (patch)
tree9f2563590e321358a08f7173d25d87f7ab16bb68 /clang/lib/Sema/SemaExceptionSpec.cpp
parent6181c192837d799c320030bb227b655b83577130 (diff)
downloadllvm-bb83f8e70bd1d56152f02307adacd718cd67e312.zip
llvm-bb83f8e70bd1d56152f02307adacd718cd67e312.tar.gz
llvm-bb83f8e70bd1d56152f02307adacd718cd67e312.tar.bz2
[OpenMP] Initial parsing and sema for 'parallel masked' construct
Differential Revision: https://reviews.llvm.org/D127454
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 207bde0..eee283d 100644
--- a/clang/lib/Sema/SemaExceptionSpec.cpp
+++ b/clang/lib/Sema/SemaExceptionSpec.cpp
@@ -1460,6 +1460,7 @@ CanThrowResult Sema::canThrow(const Stmt *S) {
case Stmt::OMPParallelForDirectiveClass:
case Stmt::OMPParallelForSimdDirectiveClass:
case Stmt::OMPParallelMasterDirectiveClass:
+ case Stmt::OMPParallelMaskedDirectiveClass:
case Stmt::OMPParallelMasterTaskLoopDirectiveClass:
case Stmt::OMPParallelMasterTaskLoopSimdDirectiveClass:
case Stmt::OMPParallelSectionsDirectiveClass: