diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-13 20:22:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-13 20:22:23 +0000 |
commit | b77496d6923c5eba909c6efaaa317a8aedabc6bd (patch) | |
tree | dfb57c3f36f2a0d91c017b43971808c483f2c4f1 /lib | |
parent | e7896101155725821b57ea05ffdb5728a6ee1752 (diff) | |
download | external_llvm-b77496d6923c5eba909c6efaaa317a8aedabc6bd.zip external_llvm-b77496d6923c5eba909c6efaaa317a8aedabc6bd.tar.gz external_llvm-b77496d6923c5eba909c6efaaa317a8aedabc6bd.tar.bz2 |
Add NetBSD to the Triple class, patch by Krister Walfridsson!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75489 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Support/Triple.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 279bd43..db2b300 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -48,6 +48,7 @@ const char *Triple::getOSTypeName(OSType Kind) { case DragonFly: return "dragonfly"; case FreeBSD: return "freebsd"; case Linux: return "linux"; + case NetBSD: return "netbsd"; case OpenBSD: return "openbsd"; } @@ -91,6 +92,8 @@ void Triple::Parse() const { OS = FreeBSD; else if (memcmp(&OSName[0], "linux", 5) == 0) OS = Linux; + else if (memcmp(&OSName[0], "netbsd", 6) == 0) + OS = NetBSD; else if (memcmp(&OSName[0], "openbsd", 7) == 0) OS = OpenBSD; else |