[llvm] r287798 - Revert "[Triple] Add Facebook vendor"

Daniel Berlin via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 23 11:03:54 PST 2016


Author: dannyb
Date: Wed Nov 23 13:03:54 2016
New Revision: 287798

URL: http://llvm.org/viewvc/llvm-project?rev=287798&view=rev
Log:
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.

Modified:
    llvm/trunk/include/llvm/ADT/Triple.h
    llvm/trunk/lib/Support/Triple.cpp

Modified: llvm/trunk/include/llvm/ADT/Triple.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/Triple.h?rev=287798&r1=287797&r2=287798&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/Triple.h (original)
+++ llvm/trunk/include/llvm/ADT/Triple.h Wed Nov 23 13:03:54 2016
@@ -130,7 +130,6 @@ public:
     SCEI,
     BGP,
     BGQ,
-    Facebook,
     Freescale,
     IBM,
     ImaginationTechnologies,

Modified: llvm/trunk/lib/Support/Triple.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Triple.cpp?rev=287798&r1=287797&r2=287798&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Triple.cpp (original)
+++ llvm/trunk/lib/Support/Triple.cpp Wed Nov 23 13:03:54 2016
@@ -152,7 +152,6 @@ StringRef Triple::getVendorTypeName(Vend
   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(St
     .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)




More information about the llvm-commits mailing list