diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2011-06-29 18:41:17 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2011-06-29 18:41:17 +0000 |
commit | 5d9b6bf9de98a33427fc7a3beeca90a3002b4744 (patch) | |
tree | 57e0d2a0c0e54abbd68dc7e6b0fc6ad828485af6 /include/clang/Basic/LangOptions.h | |
parent | c3151c4328ad7233a269a53e8d523e1f0562594d (diff) |
Use existing -fcatch-undefined-behavior option,
replacing -freset-local-blocks. // rdar://9227352
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134082 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/LangOptions.h')
-rw-r--r-- | include/clang/Basic/LangOptions.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index e99d872209..7eda0aa3fd 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -72,7 +72,6 @@ public: unsigned POSIXThreads : 1; // Compiling with POSIX thread support // (-pthread) unsigned Blocks : 1; // block extension to C - unsigned ResetLocalBlocks : 1; // reset local blocks going out of scope unsigned EmitAllDecls : 1; // Emit all declarations, even if // they are unused. unsigned MathErrno : 1; // Math functions must respect errno @@ -199,7 +198,7 @@ public: ThreadsafeStatics = 1; POSIXThreads = 0; - Blocks = ResetLocalBlocks = 0; + Blocks = 0; EmitAllDecls = 0; MathErrno = 1; SignedOverflowBehavior = SOB_Undefined; |