diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2020-02-28 09:52:15 -0500 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2020-03-02 13:10:32 -0500 |
commit | c112e941a0c5d3b3423272c3f0024cdf6b50e44e (patch) | |
tree | 9c21042e63a40f7deee2cfc3cbd9e750b559d063 /clang/lib/Sema/SemaExceptionSpec.cpp | |
parent | 5c83bedecab94f4dbbb0449cced31aec1b8aaac5 (diff) | |
download | llvm-c112e941a0c5d3b3423272c3f0024cdf6b50e44e.zip llvm-c112e941a0c5d3b3423272c3f0024cdf6b50e44e.tar.gz llvm-c112e941a0c5d3b3423272c3f0024cdf6b50e44e.tar.bz2 |
[OPENMP50]Add basic support for depobj construct.
Added basic parsing/sema/serialization support for depobj directive.
Diffstat (limited to 'clang/lib/Sema/SemaExceptionSpec.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExceptionSpec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaExceptionSpec.cpp b/clang/lib/Sema/SemaExceptionSpec.cpp index 193eaa3..1e892aa 100644 --- a/clang/lib/Sema/SemaExceptionSpec.cpp +++ b/clang/lib/Sema/SemaExceptionSpec.cpp @@ -1430,6 +1430,7 @@ CanThrowResult Sema::canThrow(const Stmt *S) { case Stmt::OMPDistributeParallelForSimdDirectiveClass: case Stmt::OMPDistributeSimdDirectiveClass: case Stmt::OMPFlushDirectiveClass: + case Stmt::OMPDepobjDirectiveClass: case Stmt::OMPForDirectiveClass: case Stmt::OMPForSimdDirectiveClass: case Stmt::OMPMasterDirectiveClass: |