Revert "[Triple] Add Facebook vendor"

This reverts commit r287684

Objections on the review thread had not been addressed to
prior to commit.  I asked the committer to revert, but i expect they
are gone for the US holiday or something.

llvm-svn: 287798
This commit is contained in:
Daniel Berlin 2016-11-23 19:03:54 +00:00
parent fb1214dfc3
commit 5c0c0081f0
2 changed files with 0 additions and 3 deletions

View File

@ -130,7 +130,6 @@ public:
SCEI,
BGP,
BGQ,
Facebook,
Freescale,
IBM,
ImaginationTechnologies,

View File

@ -152,7 +152,6 @@ StringRef Triple::getVendorTypeName(VendorType Kind) {
case SCEI: return "scei";
case BGP: return "bgp";
case BGQ: return "bgq";
case Facebook: return "facebook";
case Freescale: return "fsl";
case IBM: return "ibm";
case ImaginationTechnologies: return "img";
@ -435,7 +434,6 @@ static Triple::VendorType parseVendor(StringRef VendorName) {
.Case("scei", Triple::SCEI)
.Case("bgp", Triple::BGP)
.Case("bgq", Triple::BGQ)
.Case("facebook", Triple::Facebook)
.Case("fsl", Triple::Freescale)
.Case("ibm", Triple::IBM)
.Case("img", Triple::ImaginationTechnologies)