diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-08 17:42:00 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-08 17:42:00 +0000 |
commit | 346fb4bbcd3a082ee4da7b69dc44b80290204d0e (patch) | |
tree | 5fd31d02ce7c3c93df165e151b5c754e23d46d3f /clang/lib/Frontend | |
parent | 5e62adad0d3cd54c09170150e982af9d0e6cb71d (diff) | |
download | bcm5719-llvm-346fb4bbcd3a082ee4da7b69dc44b80290204d0e.tar.gz bcm5719-llvm-346fb4bbcd3a082ee4da7b69dc44b80290204d0e.zip |
Revert "[OPENMP]Initial support for the delayed diagnostics."
This reverts commit r353540. Erroneously committed, need to fix the
message and description.
llvm-svn: 353541
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index bda8427b1a1..b991a89e41b 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -2827,6 +2827,7 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, // Set the flag to prevent the implementation from emitting device exception // handling code for those requiring so. + Opts.OpenMPHostCXXExceptions = Opts.Exceptions && Opts.CXXExceptions; if ((Opts.OpenMPIsDevice && T.isNVPTX()) || Opts.OpenCLCPlusPlus) { Opts.Exceptions = 0; Opts.CXXExceptions = 0; |