forked from OSchip/llvm-project
Change range-based for-loop to use const auto&. No functionality change.
llvm-svn: 234974
This commit is contained in:
parent
8a7b84b4d0
commit
46f2cc9e44
|
@ -355,8 +355,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
StringRef SymName = VFTableEntry.second;
|
||||
outs() << VFTableName << '[' << Offset << "]: " << SymName << '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, ArrayRef<little32_t>> &VBTable :
|
||||
VBTables) {
|
||||
for (const auto &VBTable : VBTables) {
|
||||
StringRef VBTableName = VBTable.first;
|
||||
uint32_t Idx = 0;
|
||||
for (little32_t Offset : VBTable.second) {
|
||||
|
@ -364,8 +363,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
Idx += sizeof(Offset);
|
||||
}
|
||||
}
|
||||
for (const std::pair<const StringRef, CompleteObjectLocator> &COLPair :
|
||||
COLs) {
|
||||
for (const auto &COLPair : COLs) {
|
||||
StringRef COLName = COLPair.first;
|
||||
const CompleteObjectLocator &COL = COLPair.second;
|
||||
outs() << COLName << "[IsImageRelative]: " << COL.Data[0] << '\n';
|
||||
|
@ -375,8 +373,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
outs() << COLName << "[ClassHierarchyDescriptor]: " << COL.Symbols[1]
|
||||
<< '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, ClassHierarchyDescriptor> &CHDPair :
|
||||
CHDs) {
|
||||
for (const auto &CHDPair : CHDs) {
|
||||
StringRef CHDName = CHDPair.first;
|
||||
const ClassHierarchyDescriptor &CHD = CHDPair.second;
|
||||
outs() << CHDName << "[AlwaysZero]: " << CHD.Data[0] << '\n';
|
||||
|
@ -384,14 +381,13 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
outs() << CHDName << "[NumClasses]: " << CHD.Data[2] << '\n';
|
||||
outs() << CHDName << "[BaseClassArray]: " << CHD.Symbols[0] << '\n';
|
||||
}
|
||||
for (const std::pair<const std::pair<StringRef, uint64_t>, StringRef>
|
||||
&BCAEntry : BCAEntries) {
|
||||
for (const auto &BCAEntry : BCAEntries) {
|
||||
StringRef BCAName = BCAEntry.first.first;
|
||||
uint64_t Offset = BCAEntry.first.second;
|
||||
StringRef SymName = BCAEntry.second;
|
||||
outs() << BCAName << '[' << Offset << "]: " << SymName << '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, BaseClassDescriptor> &BCDPair : BCDs) {
|
||||
for (const auto &BCDPair : BCDs) {
|
||||
StringRef BCDName = BCDPair.first;
|
||||
const BaseClassDescriptor &BCD = BCDPair.second;
|
||||
outs() << BCDName << "[TypeDescriptor]: " << BCD.Symbols[0] << '\n';
|
||||
|
@ -403,7 +399,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
outs() << BCDName << "[ClassHierarchyDescriptor]: " << BCD.Symbols[1]
|
||||
<< '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, TypeDescriptor> &TDPair : TDs) {
|
||||
for (const auto &TDPair : TDs) {
|
||||
StringRef TDName = TDPair.first;
|
||||
const TypeDescriptor &TD = TDPair.second;
|
||||
outs() << TDName << "[VFPtr]: " << TD.Symbols[0] << '\n';
|
||||
|
@ -413,7 +409,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
/*UseHexEscapes=*/true)
|
||||
<< '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, ThrowInfo> &TIPair : TIs) {
|
||||
for (const auto &TIPair : TIs) {
|
||||
StringRef TIName = TIPair.first;
|
||||
const ThrowInfo &TI = TIPair.second;
|
||||
auto dumpThrowInfoFlag = [&](const char *Name, uint32_t Flag) {
|
||||
|
@ -432,7 +428,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
dumpThrowInfoSymbol("ForwardCompat", 8);
|
||||
dumpThrowInfoSymbol("CatchableTypeArray", 12);
|
||||
}
|
||||
for (const std::pair<const StringRef, CatchableTypeArray> &CTAPair : CTAs) {
|
||||
for (const auto &CTAPair : CTAs) {
|
||||
StringRef CTAName = CTAPair.first;
|
||||
const CatchableTypeArray &CTA = CTAPair.second;
|
||||
|
||||
|
@ -444,7 +440,7 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
I != E; ++I)
|
||||
outs() << CTAName << '[' << Idx++ << "]: " << I->second << '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, CatchableType> &CTPair : CTs) {
|
||||
for (const auto &CTPair : CTs) {
|
||||
StringRef CTName = CTPair.first;
|
||||
const CatchableType &CT = CTPair.second;
|
||||
auto dumpCatchableTypeFlag = [&](const char *Name, uint32_t Flag) {
|
||||
|
@ -467,14 +463,13 @@ static void dumpCXXData(const ObjectFile *Obj) {
|
|||
<< "[CopyCtor]: " << (CT.Symbols[1].empty() ? "null" : CT.Symbols[1])
|
||||
<< '\n';
|
||||
}
|
||||
for (const std::pair<const std::pair<StringRef, uint64_t>, StringRef>
|
||||
&VTTPair : VTTEntries) {
|
||||
for (const auto &VTTPair : VTTEntries) {
|
||||
StringRef VTTName = VTTPair.first.first;
|
||||
uint64_t VTTOffset = VTTPair.first.second;
|
||||
StringRef VTTEntry = VTTPair.second;
|
||||
outs() << VTTName << '[' << VTTOffset << "]: " << VTTEntry << '\n';
|
||||
}
|
||||
for (const std::pair<const StringRef, StringRef> &TIPair : TINames) {
|
||||
for (const auto &TIPair : TINames) {
|
||||
StringRef TIName = TIPair.first;
|
||||
outs() << TIName << ": " << TIPair.second << '\n';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue