diff options
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugValues.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugValues.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugValues.cpp b/llvm/lib/CodeGen/LiveDebugValues.cpp index 9afff06685c..d808d3663d3 100644 --- a/llvm/lib/CodeGen/LiveDebugValues.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues.cpp @@ -301,11 +301,9 @@ bool LiveDebugValues::transferTerminatorInst(MachineInstr &MI, if (OpenRanges.empty()) return false; - DEBUG(for (unsigned ID - : OpenRanges) { + DEBUG(for (unsigned ID : OpenRanges) { // Copy OpenRanges to OutLocs, if not already present. - dbgs() << "Add to OutLocs: "; - VarLocIDs[ID].dump(); + dbgs() << "Add to OutLocs: "; VarLocIDs[ID].dump(); }); VarLocSet &VLS = OutLocs[CurMBB]; Changed = VLS |= OpenRanges; |