From b8ac841c9a275cc8d4e1a92dd06cc99323e35fa2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Jul 2009 20:22:23 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/Triple.h | 1 + lib/Support/Triple.cpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h index 96c03579584..2366dfe20b6 100644 --- a/include/llvm/ADT/Triple.h +++ b/include/llvm/ADT/Triple.h @@ -54,6 +54,7 @@ public: DragonFly, FreeBSD, Linux, + NetBSD, OpenBSD }; diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 279bd43ac5a..db2b3000b6b 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