From 6046cffbaf584b5d6bd7baf827794a5f91a07a9b Mon Sep 17 00:00:00 2001 From: John Thompson Date: Tue, 15 Mar 2011 21:51:56 +0000 Subject: Add scei vendor git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127705 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Triple.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 36edf6eefa..53ca48f846 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -84,6 +84,7 @@ const char *Triple::getVendorTypeName(VendorType Kind) { case Apple: return "apple"; case PC: return "pc"; + case SCEI: return "scei"; } return ""; @@ -296,6 +297,8 @@ Triple::VendorType Triple::ParseVendor(StringRef VendorName) { return Apple; else if (VendorName == "pc") return PC; + else if (VendorName == "scei") + return SCEI; else return UnknownVendor; } -- cgit v1.2.3-18-g5258