diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-08 02:20:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-08 02:20:44 +0000 |
commit | c31176d5ebbcd407aa512bbd5f717e35da629e7d (patch) | |
tree | c67eb8b7fcf0cfa5e3069b44372d80de37bf367c /lib/Driver/ToolChains.h | |
parent | 65b0aa5d3973e07c8c4449ef2b81c389fd48229a (diff) |
Use -fno-math-errno by default, and remove the IsMathErrnoDefault
targethook, which is no longer being used. This fixes PR5971.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92987 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.h')
-rw-r--r-- | lib/Driver/ToolChains.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index be36344f0c..374ad8c6bb 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -38,7 +38,6 @@ public: virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; - virtual bool IsMathErrnoDefault() const; virtual bool IsUnwindTablesDefault() const; virtual const char *GetDefaultRelocationModel() const; virtual const char *GetForcedPicModel() const; @@ -136,7 +135,6 @@ public: virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; - virtual bool IsMathErrnoDefault() const; virtual bool IsBlocksDefault() const { // Blocks default to on for 10.6 (darwin10) and beyond. return (DarwinVersion[0] > 9); |