We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1391dd7 commit ade2cccCopy full SHA for ade2ccc
llvm/lib/Object/MachOObjectFile.cpp
@@ -2000,7 +2000,7 @@ MachOObjectFile::getSectionContents(DataRefImpl Sec) const {
2000
// will be returned stopping invalid section data from being returned.
2001
uint64_t PrevTrueOffset = 0;
2002
uint64_t SectOffsetAdjust = 0;
2003
- for (uint32_t SectIdx=0; SectIdx<Sec.d.a; ++SectIdx) {
+ for (uint32_t SectIdx = 0; SectIdx < Sec.d.a; ++SectIdx) {
2004
MachO::section_64 CurrSect =
2005
getStruct<MachO::section_64>(*this, Sections[SectIdx]);
2006
uint64_t CurrTrueOffset = (uint64_t)CurrSect.offset + SectOffsetAdjust;
0 commit comments