diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-05-26 16:06:04 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-05-26 16:06:04 +0000 |
commit | aa9d6c3630b32397e7ad7b38158bf7f8803f5983 (patch) | |
tree | 0bb8b255d49b2689aba577ce4989b45164a3e57e /llvm/lib/CodeGen/LiveDebugValues.cpp | |
parent | a1c8c60e203e15d08c7735f437028fb170c404f6 (diff) | |
download | bcm5719-llvm-aa9d6c3630b32397e7ad7b38158bf7f8803f5983.tar.gz bcm5719-llvm-aa9d6c3630b32397e7ad7b38158bf7f8803f5983.zip |
Undo a suboptimal clang-format decision. NFC
llvm-svn: 270861
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; |