diff options
author | Mike Stump <mrs@apple.com> | 2009-10-07 01:11:54 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-07 01:11:54 +0000 |
commit | 44da821078a5f09127a01f9aa01dd9dd9af9de86 (patch) | |
tree | 35ed2fb9cc13b46feaeab923353e96d378f56688 /lib/Driver/ToolChains.h | |
parent | b540491851910c2efa68196a8bdc2eed1071c17d (diff) |
Fixup pathnames.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.h')
-rw-r--r-- | lib/Driver/ToolChains.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index 6088d9617c..5934be4788 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -165,14 +165,14 @@ public: /// DarwinGCC - The Darwin toolchain used by GCC. class VISIBILITY_HIDDEN DarwinGCC : public Darwin { /// GCC version to use. - unsigned GCCVersion[3]; + unsigned GCCVersion[4]; /// The directory suffix for this tool chain. std::string ToolChainDir; public: DarwinGCC(const HostInfo &Host, const llvm::Triple& Triple, - const unsigned (&DarwinVersion)[3], const unsigned (&GCCVersion)[3], + const unsigned (&DarwinVersion)[3], const unsigned (&GCCVersion)[4], bool IsIPhoneOS); /// @name Darwin ToolChain Implementation |