diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-01 18:59:55 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-01 18:59:55 +0000 |
commit | 7e203b7f5d894b1969765332e35c6a8b4d45556f (patch) | |
tree | dffbe93587da6cc3d24c70c3c71bf5afc336a329 /include/clang/Basic/LangOptions.h | |
parent | a42c4c9d6101eb43259fd51f577b7bf7e8785624 (diff) |
Revert r68221, -ftrapv support, which causes several regressions in
Clang's test suite.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/LangOptions.h')
-rw-r--r-- | include/clang/Basic/LangOptions.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index 818ccda48b..b49d500470 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -59,9 +59,6 @@ public: unsigned MathErrno : 1; // Math functions must respect errno // (modulo the platform support). - unsigned OverflowChecking : 1; // Extension to call a handler function when - // integer arithmetic overflows. - unsigned HeinousExtensions : 1; // Extensions that we really don't like and // may be ripped out at any time. private: @@ -90,8 +87,6 @@ public: EmitAllDecls = 0; MathErrno = 1; - OverflowChecking = 0; - InstantiationDepth = 99; } |