diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-07-19 17:11:33 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-19 17:11:33 +0000 |
commit | c0e665eb705762f95cd4f722ad7ecbdcde3f4527 (patch) | |
tree | 4b2fb82eb0a0b1d16b2aee0a7397a45b86544f5f /lib/Driver/ToolChains.h | |
parent | 9a90d79eb496d9549e22104b2b006dfd43918183 (diff) |
Driver: Factor out Darwin::AddDeploymentTarget.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108711 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.h')
-rw-r--r-- | lib/Driver/ToolChains.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index 4bdd00fc25..a933553f46 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -61,6 +61,10 @@ class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { /// initialized. std::string MacosxVersionMin; +private: + void AddDeploymentTarget(const DerivedArgList &Args, + DerivedArgList *DAL) const; + public: Darwin(const HostInfo &Host, const llvm::Triple& Triple, const unsigned (&DarwinVersion)[3]); |