OSDN Git Service

Undo a suboptimal clang-format decision. NFC
authorAdrian Prantl <aprantl@apple.com>
Thu, 26 May 2016 16:06:04 +0000 (16:06 +0000)
committerAdrian Prantl <aprantl@apple.com>
Thu, 26 May 2016 16:06:04 +0000 (16:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270861 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LiveDebugValues.cpp

index 9afff06..d808d36 100644 (file)
@@ -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;