Skip to content

Commit 8285c1b

Browse files
committed
clang-format
1 parent 835576d commit 8285c1b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/utils/TableGen/Common/GlobalISel/GlobalISelMatchTable.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,14 @@ void MatchTable::emitDeclaration(raw_ostream &OS) const {
294294
const unsigned NumColsForIdx = llvm::to_string(CurrentSize).size();
295295

296296
unsigned CurIndex = 0;
297-
const auto BeginLine = [&](){
297+
const auto BeginLine = [&]() {
298298
OS << std::string(BaseIndent, ' ');
299299
// To keep the /* index */ column consistent, pad
300300
// the string at the start so we can always fit the
301301
// exact number of characters to print the largest possible index.
302302
std::string IdxStr = llvm::to_string(CurIndex);
303-
OS << " /* " << std::string(NumColsForIdx - IdxStr.size(), ' ') << IdxStr << " */ ";
303+
OS << " /* " << std::string(NumColsForIdx - IdxStr.size(), ' ') << IdxStr
304+
<< " */ ";
304305
OS << std::string(Indentation, ' ');
305306
};
306307

0 commit comments

Comments
 (0)