Skip to content

Commit 71a638c

Browse files
committed
Format
1 parent 4c0f90f commit 71a638c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/lib/ObjCopy/COFF/COFFWriter.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ Error COFFWriter::finalizeSymIdxContents() {
112112
for (Symbol &Sym : Obj.getMutableSymbols()) {
113113
SymIdMap[Sym.OriginalRawIndex] = Sym.RawIndex;
114114

115-
// We collect only definition symbols of the sections to update the checksums.
115+
// We collect only definition symbols of the sections to update the
116+
// checksums.
116117
if (Sym.Sym.StorageClass == IMAGE_SYM_CLASS_STATIC &&
117118
Sym.Sym.NumberOfAuxSymbols == 1 && Sym.Sym.Value == 0 &&
118119
IsSymIdxSection(Sym.Name))
@@ -126,8 +127,8 @@ Error COFFWriter::finalizeSymIdxContents() {
126127
continue;
127128

128129
ArrayRef<uint8_t> RawIds = Sec.getContents();
129-
// Nothing to do and also the checksum will be -1 instead of 0 if we recalculate
130-
// it on empty input.
130+
// Nothing to do and also the checksum will be -1 instead of 0 if we
131+
// recalculate it on empty input.
131132
if (RawIds.size() == 0)
132133
continue;
133134

0 commit comments

Comments
 (0)