diff options
| author | Alexey Samsonov <vonosmas@gmail.com> | 2015-06-18 00:36:40 +0000 |
|---|---|---|
| committer | Alexey Samsonov <vonosmas@gmail.com> | 2015-06-18 00:36:40 +0000 |
| commit | 92b0b02e29a7e6e70b18f4004d9f58e4b6914d2b (patch) | |
| tree | bf1deb2bc6fa2b3c1014a4990f10d25ed34b34ec | |
| parent | fd0bb3a9ac2aafc972e9561b2041cf5e30c03368 (diff) | |
| download | bcm5719-llvm-92b0b02e29a7e6e70b18f4004d9f58e4b6914d2b.tar.gz bcm5719-llvm-92b0b02e29a7e6e70b18f4004d9f58e4b6914d2b.zip | |
[Driver] Remove unused class member. NFC.
llvm-svn: 239981
| -rw-r--r-- | clang/lib/Driver/ToolChains.cpp | 6 | ||||
| -rw-r--r-- | clang/lib/Driver/ToolChains.h | 3 |
2 files changed, 0 insertions, 9 deletions
diff --git a/clang/lib/Driver/ToolChains.cpp b/clang/lib/Driver/ToolChains.cpp index 25a3d8e475b..314621d4afc 100644 --- a/clang/lib/Driver/ToolChains.cpp +++ b/clang/lib/Driver/ToolChains.cpp @@ -60,12 +60,6 @@ Darwin::Darwin(const Driver & D, const llvm::Triple & Triple, llvm::raw_string_ostream(MacosxVersionMin) << Major << '.' << Minor << '.' << Micro; - // FIXME: DarwinVersion is only used to find GCC's libexec directory. - // It should be removed when we stop supporting that. - DarwinVersion[0] = Minor + 4; - DarwinVersion[1] = Micro; - DarwinVersion[2] = 0; - // Compute the initial iOS version from the triple Triple.getiOSVersion(Major, Minor, Micro); llvm::raw_string_ostream(iOSVersionMin) diff --git a/clang/lib/Driver/ToolChains.h b/clang/lib/Driver/ToolChains.h index 74b093f2671..1141b312c42 100644 --- a/clang/lib/Driver/ToolChains.h +++ b/clang/lib/Driver/ToolChains.h @@ -316,9 +316,6 @@ public: /// Darwin - The base Darwin tool chain. class LLVM_LIBRARY_VISIBILITY Darwin : public MachO { public: - /// The host version. - unsigned DarwinVersion[3]; - /// Whether the information on the target has been initialized. // // FIXME: This should be eliminated. What we want to do is make this part of |

