[TableGen] Put a space between '*' and description in the autogenerated tablegen...
authorCraig Topper <craig.topper@gmail.com>
Tue, 26 May 2015 08:07:45 +0000 (08:07 +0000)
committerCraig Topper <craig.topper@gmail.com>
Tue, 26 May 2015 08:07:45 +0000 (08:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238185 91177308-0d34-0410-b5e6-96231b3b80d8

lib/TableGen/TableGenBackend.cpp

index b4a5318bd08dfe51b4446e48c599edce117fa00c..9763f85c79348770d0633bb4d3be262dea77893d 100644 (file)
@@ -33,21 +33,20 @@ static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
 
 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) {
   printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
-  printLine(OS, "|*", ' ', "*|");
-  size_t Pos = 0U;
-  size_t PosE;
-  StringRef Prefix("|*");
+  StringRef Prefix("|* ");
   StringRef Suffix(" *|");
+  printLine(OS, Prefix, ' ', Suffix);
+  size_t Pos = 0U;
   do{
     size_t PSLen = Suffix.size() + Prefix.size();
-    PosE = Pos + ((MAX_LINE_LEN > (Desc.size() - PSLen)) ?
+    size_t PosE = Pos + ((MAX_LINE_LEN > (Desc.size() - PSLen)) ?
       Desc.size() :
       MAX_LINE_LEN - PSLen);
     printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
     Pos = PosE;
-  } while(Pos < Desc.size());
+  } while (Pos < Desc.size());
   printLine(OS, Prefix, ' ', Suffix);
-  printLine(OS, Prefix + " Automatically generated file, do not edit!", ' ',
+  printLine(OS, Prefix + "Automatically generated file, do not edit!", ' ',
     Suffix);
   printLine(OS, Prefix, ' ', Suffix);
   printLine(OS, "\\*===", '-', "===*/");