diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-10-07 03:21:11 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-10-07 03:21:11 +0000 |
commit | 55bac5339154cedc7541b5648f9c3486e547b45c (patch) | |
tree | db109b6037fac554e088ec139ba569f266cddf60 /lib/Driver/ToolChains.h | |
parent | c4355b6883382b85cda3b7337587784dabf3450b (diff) |
Revert r83443.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83451 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 5934be4788..6088d9617c 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[4]; + unsigned GCCVersion[3]; /// 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)[4], + const unsigned (&DarwinVersion)[3], const unsigned (&GCCVersion)[3], bool IsIPhoneOS); /// @name Darwin ToolChain Implementation |