diff options
author | Konstantin Zhuravlyov <kzhuravl_dev@outlook.com> | 2017-09-08 16:17:16 +0000 |
---|---|---|
committer | Konstantin Zhuravlyov <kzhuravl_dev@outlook.com> | 2017-09-08 16:17:16 +0000 |
commit | 500c25e5da14b0ad01111681733cb0c09646463f (patch) | |
tree | c70ef0ba506fdb0273c58192b1ca21d025456c3e | |
parent | cc623ad0712e48cdd6a33dc3d5035382b8c032d6 (diff) | |
download | bcm5719-llvm-500c25e5da14b0ad01111681733cb0c09646463f.tar.gz bcm5719-llvm-500c25e5da14b0ad01111681733cb0c09646463f.zip |
Add '\n' in ClangDataCollectorsEmitter
Differential Revision: https://reviews.llvm.org/D37599
llvm-svn: 312795
-rw-r--r-- | clang/utils/TableGen/ClangDataCollectorsEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp b/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp index c65c7a7a91a..4079efc8082 100644 --- a/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp +++ b/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp @@ -8,7 +8,7 @@ void EmitClangDataCollectors(RecordKeeper &RK, raw_ostream &OS) { 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"; |