diff options
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 38cb15a50e..ad93121d02 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -105,7 +105,6 @@ const char *Triple::getOSTypeName(OSType Kind) { case MacOSX: return "macosx"; case MinGW32: return "mingw32"; case NetBSD: return "netbsd"; - case OSX: return "osx"; case OpenBSD: return "openbsd"; case Psp: return "psp"; case Solaris: return "solaris"; @@ -329,8 +328,6 @@ Triple::OSType Triple::ParseOS(StringRef OSName) { return MinGW32; else if (OSName.startswith("netbsd")) return NetBSD; - else if (OSName.startswith("osx")) - return OSX; else if (OSName.startswith("openbsd")) return OpenBSD; else if (OSName.startswith("psp")) |