Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 5383c7c

Browse files
author
Krzysztof Parzyszek
committed
Break up long lines, NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306585 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 8b3a547 commit 5383c7c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

utils/TableGen/RegisterInfoEmitter.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,8 @@ RegisterInfoEmitter::runTargetDesc(raw_ostream &OS, CodeGenTarget &Target,
11951195
OS << "\" };\n\n";
11961196

11971197
// Emit SubRegIndex lane masks, including 0.
1198-
OS << "\nstatic const LaneBitmask SubRegIndexLaneMaskTable[] = {\n LaneBitmask::getAll(),\n";
1198+
OS << "\nstatic const LaneBitmask SubRegIndexLaneMaskTable[] = {\n "
1199+
"LaneBitmask::getAll(),\n";
11991200
for (const auto &Idx : SubRegIndices) {
12001201
printMask(OS << " ", Idx.LaneMask);
12011202
OS << ", // " << Idx.getName() << '\n';
@@ -1234,7 +1235,8 @@ RegisterInfoEmitter::runTargetDesc(raw_ostream &OS, CodeGenTarget &Target,
12341235
BitVector MaskBV(RegisterClasses.size());
12351236

12361237
for (const auto &RC : RegisterClasses) {
1237-
OS << "static const uint32_t " << RC.getName() << "SubClassMask[] = {\n ";
1238+
OS << "static const uint32_t " << RC.getName()
1239+
<< "SubClassMask[] = {\n ";
12381240
printBitVectorAsHex(OS, RC.getSubClasses(), 32);
12391241

12401242
// Emit super-reg class masks for any relevant SubRegIndices that can

0 commit comments

Comments
 (0)