diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-02-04 19:19:07 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-02-04 19:19:07 +0000 |
| commit | 8e661efc00f2138412286bdb4662e9e7995ee23f (patch) | |
| tree | bf2d93b5d60ae34ab44c1448af7021cc466a7dd2 /llvm/lib/Target | |
| parent | d554a8eb91116cf055f36e3ffe34cb262a110fd5 (diff) | |
| download | bcm5719-llvm-8e661efc00f2138412286bdb4662e9e7995ee23f.tar.gz bcm5719-llvm-8e661efc00f2138412286bdb4662e9e7995ee23f.zip | |
cleanup: scc_iterator consumers should use isAtEnd
No functional change. Updated loops from:
for (I = scc_begin(), E = scc_end(); I != E; ++I)
to:
for (I = scc_begin(); !I.isAtEnd(); ++I)
for teh win.
llvm-svn: 200789
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/R600/AMDILCFGStructurizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp b/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp index 69ced3c8f6c..90d541eedad 100644 --- a/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp +++ b/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp @@ -934,8 +934,8 @@ bool AMDGPUCFGStructurizer::run() { void AMDGPUCFGStructurizer::orderBlocks(MachineFunction *MF) { int SccNum = 0; MachineBasicBlock *MBB; - for (scc_iterator<MachineFunction *> It = scc_begin(MF), E = scc_end(MF); - It != E; ++It, ++SccNum) { + for (scc_iterator<MachineFunction *> It = scc_begin(MF); !It.isAtEnd(); + ++It, ++SccNum) { std::vector<MachineBasicBlock *> &SccNext = *It; for (std::vector<MachineBasicBlock *>::const_iterator blockIter = SccNext.begin(), blockEnd = SccNext.end(); |

