File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
llvm/utils/TableGen/Common/GlobalISel Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments