From: Chandler Carruth Date: Sun, 6 Nov 2011 23:10:49 +0000 (+0000) Subject: Remove an old OpenSUSE hack that is no longer needed -- it is exactly X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=089b272e6663997877138a6d274abfc537811340;p=clang Remove an old OpenSUSE hack that is no longer needed -- it is exactly the same as a directory added further down in the new logic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143897 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 62370859a4..a155d6c414 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1840,11 +1840,6 @@ Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple) if (GCCInstallation.isValid()) { const std::string &LibPath = GCCInstallation.getParentLibPath(); const std::string &GccTriple = GCCInstallation.getTriple(); - // FIXME: This OpenSuse-specific path shouldn't be needed any more, but - // I don't want to remove it without finding someone to test. - if (IsOpenSuse(Distro) && Is32Bits) - Paths.push_back(LibPath + "/../" + GccTriple + "/lib/../lib"); - addPathIfExists(GCCInstallation.getInstallPath() + Suffix, Paths); addPathIfExists(LibPath + "/../" + GccTriple + "/lib/../" + Multilib, Paths);