diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-11 19:17:36 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-11 19:17:36 +0000 |
commit | f35395eac1a4538c528b7a5feb13b9bcafd9c9fc (patch) | |
tree | b8e109eb87d7321b8e599bad68fb5a1f17c2271b /llvm/lib/CodeGen | |
parent | f26ae4e09352d9f2d6075e112d26d4852d3bb666 (diff) | |
download | bcm5719-llvm-f35395eac1a4538c528b7a5feb13b9bcafd9c9fc.tar.gz bcm5719-llvm-f35395eac1a4538c528b7a5feb13b9bcafd9c9fc.zip |
[NFC] Fix whitespace.
llvm-svn: 257365
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegisterCoalescer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp index e7b32179bde..c1ff13ec7ca 100644 --- a/llvm/lib/CodeGen/RegisterCoalescer.cpp +++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp @@ -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))); |