diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2011-03-15 21:51:56 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2011-03-15 21:51:56 +0000 |
commit | 6046cffbaf584b5d6bd7baf827794a5f91a07a9b (patch) | |
tree | 3f5b5530f69e2cfbcbdfed7d3b31de3e2b8eef86 /lib | |
parent | 0d4c9d94f68fc561ebb11709ed99367e490af003 (diff) |
Add scei vendor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127705 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 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 "<invalid>"; @@ -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; } |