diff options
author | Will Dietz <wdietz2@illinois.edu> | 2012-12-30 20:53:28 +0000 |
---|---|---|
committer | Will Dietz <wdietz2@illinois.edu> | 2012-12-30 20:53:28 +0000 |
commit | 2d382d149b442b928fd3fb8edcc8d82ea9325872 (patch) | |
tree | 9f1b734c8d1dbb26038a20eae3fdca459520d1f7 /include/clang/Frontend | |
parent | de210a51dc26de6bee00a9ab172111c6f245a9fe (diff) |
[ubsan] Recover by default, use -fno-sanitize-recover to disable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171264 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend')
-rw-r--r-- | include/clang/Frontend/CodeGenOptions.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.def b/include/clang/Frontend/CodeGenOptions.def index 7f1d7613cb..97551279c4 100644 --- a/include/clang/Frontend/CodeGenOptions.def +++ b/include/clang/Frontend/CodeGenOptions.def @@ -127,7 +127,7 @@ ENUM_CODEGENOPT(Inlining, InliningMethod, 2, NoInlining) /// The default TLS model to use. ENUM_CODEGENOPT(DefaultTLSModel, TLSModel, 2, GeneralDynamicTLSModel) -CODEGENOPT(SanitizeRecover, 1, 0) ///< Attempt to recover from sanitizer checks +CODEGENOPT(SanitizeRecover, 1, 1) ///< Attempt to recover from sanitizer checks ///< by continuing execution when possible #undef CODEGENOPT |