diff options
author | dim <dim@FreeBSD.org> | 2012-05-22 21:36:38 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-05-22 21:36:38 +0000 |
commit | e6d4a67235c1e62e3e292b1a167c5c6b9610a706 (patch) | |
tree | 1bfa44f5a9427d658426ac7786a70741e36d1bc8 /lib/Driver/ToolChains.cpp | |
parent | 822bde9df508e0b9afac5e581b0d6ab403417a28 (diff) | |
download | FreeBSD-src-e6d4a67235c1e62e3e292b1a167c5c6b9610a706.zip FreeBSD-src-e6d4a67235c1e62e3e292b1a167c5c6b9610a706.tar.gz |
Vendor import of clang release_31 final r156748:
http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_31/final@156748
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r-- | lib/Driver/ToolChains.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 81657d8..7f9ed9a 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1830,6 +1830,7 @@ enum LinuxDistro { OpenSuse11_3, OpenSuse11_4, OpenSuse12_1, + OpenSuse12_2, UbuntuHardy, UbuntuIntrepid, UbuntuJaunty, @@ -1848,7 +1849,7 @@ static bool IsRedhat(enum LinuxDistro Distro) { } static bool IsOpenSuse(enum LinuxDistro Distro) { - return Distro >= OpenSuse11_3 && Distro <= OpenSuse12_1; + return Distro >= OpenSuse11_3 && Distro <= OpenSuse12_2; } static bool IsDebian(enum LinuxDistro Distro) { @@ -1925,6 +1926,7 @@ static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) { .StartsWith("openSUSE 11.3", OpenSuse11_3) .StartsWith("openSUSE 11.4", OpenSuse11_4) .StartsWith("openSUSE 12.1", OpenSuse12_1) + .StartsWith("openSUSE 12.2", OpenSuse12_2) .Default(UnknownDistro); bool Exists; |