forked from OSchip/llvm-project
Use "auto &" in range-based for-loop and remove the extra braces.
llvm-svn: 238243
This commit is contained in:
parent
757073191a
commit
6f8c1b6be6
|
@ -859,9 +859,8 @@ DwarfDebug::buildLocationList(SmallVectorImpl<DebugLocEntry> &DebugLoc,
|
|||
auto CurEntry = DebugLoc.rbegin();
|
||||
DEBUG({
|
||||
dbgs() << CurEntry->getValues().size() << " Values:\n";
|
||||
for (auto Value : CurEntry->getValues()) {
|
||||
for (auto &Value : CurEntry->getValues())
|
||||
Value.getExpression()->dump();
|
||||
}
|
||||
dbgs() << "-----\n";
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue