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