This revision was automatically updated to reflect the committed changes. Closed by commit rL312795: Add '\n' in ClangDataCollectorsEmitter (authored by kzhuravl).
Changed prior to commit: https://reviews.llvm.org/D37599?vs=114269&id=114376#toc Repository: rL LLVM https://reviews.llvm.org/D37599 Files: cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp Index: cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp =================================================================== --- cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp +++ cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp @@ -8,7 +8,7 @@ const auto &Defs = RK.getClasses(); for (const auto &Entry : Defs) { Record &R = *Entry.second; - OS << "DEF_ADD_DATA(" << R.getName() << ", {"; + OS << "DEF_ADD_DATA(" << R.getName() << ", {\n"; auto Code = R.getValue("Code")->getValue(); OS << Code->getAsUnquotedString() << "}\n)"; OS << "\n";
Index: cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp =================================================================== --- cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp +++ cfe/trunk/utils/TableGen/ClangDataCollectorsEmitter.cpp @@ -8,7 +8,7 @@ const auto &Defs = RK.getClasses(); for (const auto &Entry : Defs) { Record &R = *Entry.second; - OS << "DEF_ADD_DATA(" << R.getName() << ", {"; + OS << "DEF_ADD_DATA(" << R.getName() << ", {\n"; auto Code = R.getValue("Code")->getValue(); OS << Code->getAsUnquotedString() << "}\n)"; OS << "\n";
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits