From: Aaron Ballman Date: Wed, 25 Jun 2014 12:48:06 +0000 (+0000) Subject: Fixing the position of the supported syntax marker when generating attribute document... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=120c79f231909839d8d5e10e426c1717d58ff4b5;p=platform%2Fupstream%2Fllvm.git Fixing the position of the supported syntax marker when generating attribute documentation. llvm-svn: 211692 --- diff --git a/clang/utils/TableGen/ClangAttrEmitter.cpp b/clang/utils/TableGen/ClangAttrEmitter.cpp index bb3b67f..7ae8b74 100644 --- a/clang/utils/TableGen/ClangAttrEmitter.cpp +++ b/clang/utils/TableGen/ClangAttrEmitter.cpp @@ -2766,7 +2766,7 @@ static void WriteDocumentation(const DocumentationData &Doc, if (SupportedSpellings & Declspec) OS << "X"; OS << "\",\""; if (SupportedSpellings & Keyword) OS << "X"; - OS << "\"\n\n"; + OS << "\", \""; if (SupportedSpellings & Pragma) OS << "X"; OS << "\"\n\n";