diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-20 01:07:37 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-20 01:07:37 +0000 |
| commit | ac65b4c42208bd8a38fca704903c07dd51861d4b (patch) | |
| tree | 2081ec15d05f7101e9360663e095d855f48f0668 /llvm/lib/Target/PowerPC/PPCCTRLoops.cpp | |
| parent | 3020b1bc8c9f833077470016a47b917aaab1ebbf (diff) | |
| download | bcm5719-llvm-ac65b4c42208bd8a38fca704903c07dd51861d4b.tar.gz bcm5719-llvm-ac65b4c42208bd8a38fca704903c07dd51861d4b.zip | |
PowerPC: Remove implicit ilist iterator conversions, NFC
llvm-svn: 250787
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCCTRLoops.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCCTRLoops.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp b/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp index f6ecedf8b1a..a9687adfd37 100644 --- a/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp +++ b/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp @@ -668,7 +668,7 @@ bool PPCCTRLoopsVerify::runOnMachineFunction(MachineFunction &MF) { // any other instructions that might clobber the ctr register. for (MachineFunction::iterator I = MF.begin(), IE = MF.end(); I != IE; ++I) { - MachineBasicBlock *MBB = I; + MachineBasicBlock *MBB = &*I; if (!MDT->isReachableFromEntry(MBB)) continue; |

