[TableGen] Fix indentation. NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper
2015-05-26 06:48:47 +00:00
parent cfacb30e5d
commit d0185f83c6
+1 -1
View File
@@ -23,7 +23,7 @@ static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
StringRef Suffix) {
size_t Pos = (size_t)OS.tell();
assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) &&
"header line exceeds max limit");
"header line exceeds max limit");
OS << Prefix;
const size_t e = MAX_LINE_LEN - Suffix.size();
for (size_t i = (size_t)OS.tell() - Pos; i < e; ++i)