r211692 - Fixing the position of the supported syntax marker when generating attribute documentation.

Aaron Ballman aaron at aaronballman.com
Wed Jun 25 05:48:06 PDT 2014


Author: aaronballman
Date: Wed Jun 25 07:48:06 2014
New Revision: 211692

URL: http://llvm.org/viewvc/llvm-project?rev=211692&view=rev
Log:
Fixing the position of the supported syntax marker when generating attribute documentation.

Modified:
    cfe/trunk/utils/TableGen/ClangAttrEmitter.cpp

Modified: cfe/trunk/utils/TableGen/ClangAttrEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TableGen/ClangAttrEmitter.cpp?rev=211692&r1=211691&r2=211692&view=diff
==============================================================================
--- cfe/trunk/utils/TableGen/ClangAttrEmitter.cpp (original)
+++ cfe/trunk/utils/TableGen/ClangAttrEmitter.cpp Wed Jun 25 07:48:06 2014
@@ -2766,7 +2766,7 @@ static void WriteDocumentation(const Doc
   if (SupportedSpellings & Declspec) OS << "X";
   OS << "\",\"";
   if (SupportedSpellings & Keyword) OS << "X";
-  OS << "\"\n\n";
+  OS << "\", \"";
   if (SupportedSpellings & Pragma) OS << "X";
   OS << "\"\n\n";
 





More information about the cfe-commits mailing list