From 5c0c0081f0dddb522c6ab53f971d3c430189a3b3 Mon Sep 17 00:00:00 2001 From: Daniel Berlin Date: Wed, 23 Nov 2016 19:03:54 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/Triple.h | 1 - lib/Support/Triple.cpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h index 5f208125452..d4130e1e85a 100644 --- a/include/llvm/ADT/Triple.h +++ b/include/llvm/ADT/Triple.h @@ -130,7 +130,6 @@ public: SCEI, BGP, BGQ, - Facebook, Freescale, IBM, ImaginationTechnologies, diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index f0dda0b1bc2..6783b40a125 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -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)