Skip to content

Commit 64e6793

Browse files
author
Yuanke Luo
committed
[TableGen] Fix clang format issue
1 parent 26ac7b6 commit 64e6793

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

llvm/utils/TableGen/DFAPacketizerEmitter.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,12 @@ void DFAPacketizerEmitter::emitForItineraries(
278278
}
279279
OS << " };\n"
280280
<< " auto It = std::lower_bound(\n"
281-
<< " std::begin(" << TargetName << DFAName << "ProcIdToProcResourceIdxTable),\n"
282-
<< " std::end(" << TargetName << DFAName << "ProcIdToProcResourceIdxTable), ProcID,\n"
283-
<< " [](const unsigned LHS[], unsigned Val) { return LHS[0] < Val; });\n"
281+
<< " std::begin(" << TargetName << DFAName
282+
<< "ProcIdToProcResourceIdxTable),\n"
283+
<< " std::end(" << TargetName << DFAName
284+
<< "ProcIdToProcResourceIdxTable), ProcID,\n"
285+
<< " [](const unsigned LHS[], unsigned Val) { return LHS[0] < Val; "
286+
"});\n"
284287
<< " return (*It)[1];\n"
285288
<< "}\n\n";
286289

0 commit comments

Comments
 (0)