[llvm] r257365 - [NFC] Fix whitespace.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 11 11:17:37 PST 2016


Author: mcrosier
Date: Mon Jan 11 13:17:36 2016
New Revision: 257365

URL: http://llvm.org/viewvc/llvm-project?rev=257365&view=rev
Log:
[NFC] Fix whitespace.

Modified:
    llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp

Modified: llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp?rev=257365&r1=257364&r2=257365&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp Mon Jan 11 13:17:36 2016
@@ -2874,7 +2874,7 @@ void RegisterCoalescer::joinAllIntervals
 
   std::vector<MBBPriorityInfo> MBBs;
   MBBs.reserve(MF->size());
-  for (MachineFunction::iterator I = MF->begin(), E = MF->end();I != E;++I){
+  for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) {
     MachineBasicBlock *MBB = &*I;
     MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
                                    JoinSplitEdges && isSplitEdge(MBB)));




More information about the llvm-commits mailing list