[llvm] r370522 - [IFS][NFC] llvm-ifs: Fixing build bot build break: revert r370517 and r370510.

Puyan Lotfi via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 30 13:25:46 PDT 2019


Author: zer0
Date: Fri Aug 30 13:25:46 2019
New Revision: 370522

URL: http://llvm.org/viewvc/llvm-project?rev=370522&view=rev
Log:
[IFS][NFC] llvm-ifs: Fixing build bot build break: revert r370517 and r370510.



Modified:
    llvm/trunk/tools/llvm-ifs/llvm-ifs.cpp

Modified: llvm/trunk/tools/llvm-ifs/llvm-ifs.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-ifs/llvm-ifs.cpp?rev=370522&r1=370521&r2=370522&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-ifs/llvm-ifs.cpp (original)
+++ llvm/trunk/tools/llvm-ifs/llvm-ifs.cpp Fri Aug 30 13:25:46 2019
@@ -85,8 +85,10 @@ struct IFSSymbol {
   bool operator<(const IFSSymbol &RHS) const { return Name < RHS.Name; }
 };
 
+namespace llvm {
+namespace yaml {
 /// YAML traits for IFSSymbolType.
-template <> struct llvm::yaml::ScalarEnumerationTraits<IFSSymbolType> {
+template <> struct ScalarEnumerationTraits<IFSSymbolType> {
   static void enumeration(IO &IO, IFSSymbolType &SymbolType) {
     IO.enumCase(SymbolType, "NoType", IFSSymbolType::NoType);
     IO.enumCase(SymbolType, "Func", IFSSymbolType::Func);
@@ -98,7 +100,7 @@ template <> struct llvm::yaml::ScalarEnu
   }
 };
 
-template <> struct llvm::yaml::ScalarTraits<VersionTuple> {
+template <> struct ScalarTraits<VersionTuple> {
   static void output(const VersionTuple &Value, void *,
                      llvm::raw_ostream &Out) {
     Out << Value.getAsString();
@@ -120,7 +122,7 @@ template <> struct llvm::yaml::ScalarTra
 };
 
 /// YAML traits for IFSSymbol.
-template <> struct llvm::yaml::MappingTraits<IFSSymbol> {
+template <> struct MappingTraits<IFSSymbol> {
   static void mapping(IO &IO, IFSSymbol &Symbol) {
     IO.mapRequired("Type", Symbol.Type);
     // The need for symbol size depends on the symbol type.
@@ -139,7 +141,7 @@ template <> struct llvm::yaml::MappingTr
 };
 
 /// YAML traits for set of IFSSymbols.
-template <> struct llvm::yaml::CustomMappingTraits<std::set<IFSSymbol>> {
+template <> struct CustomMappingTraits<std::set<IFSSymbol>> {
   static void inputOne(IO &IO, StringRef Key, std::set<IFSSymbol> &Set) {
     std::string Name = Key.str();
     IFSSymbol Sym(Name);
@@ -152,6 +154,8 @@ template <> struct llvm::yaml::CustomMap
       IO.mapRequired(Sym.Name.c_str(), const_cast<IFSSymbol &>(Sym));
   }
 };
+} // End yaml namespace
+} // End llvm namespace
 
 // A cumulative representation of ELF stubs.
 // Both textual and binary stubs will read into and write from this object.
@@ -177,8 +181,10 @@ public:
         Symbols(std::move(Stub.Symbols)) {}
 };
 
+namespace llvm {
+namespace yaml {
 /// YAML traits for IFSStub objects.
-template <> struct llvm::yaml::MappingTraits<IFSStub> {
+template <> struct MappingTraits<IFSStub> {
   static void mapping(IO &IO, IFSStub &Stub) {
     if (!IO.mapTag("!experimental-ifs-v1", true))
       IO.setError("Not a .ifs YAML file.");
@@ -190,6 +196,8 @@ template <> struct llvm::yaml::MappingTr
     IO.mapRequired("Symbols", Stub.Symbols);
   }
 };
+} // End yaml namespace
+} // End llvm namespace
 
 static Expected<std::unique_ptr<IFSStub>> readInputFile(StringRef FilePath) {
   // Read in file.




More information about the llvm-commits mailing list