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/PPCISelDAGToDAG.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/PPCISelDAGToDAG.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index e876a186f86..1a0fe7954e4 100644 --- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -3305,7 +3305,7 @@ void PPCDAGToDAGISel::PreprocessISelDAG() { bool MadeChange = false; while (Position != CurDAG->allnodes_begin()) { - SDNode *N = --Position; + SDNode *N = &*--Position; if (N->use_empty()) continue; @@ -3989,7 +3989,7 @@ void PPCDAGToDAGISel::PeepholePPC64ZExt() { bool MadeChange = false; while (Position != CurDAG->allnodes_begin()) { - SDNode *N = --Position; + SDNode *N = &*--Position; // Skip dead nodes and any non-machine opcodes. if (N->use_empty() || !N->isMachineOpcode()) continue; @@ -4145,7 +4145,7 @@ void PPCDAGToDAGISel::PeepholePPC64() { ++Position; while (Position != CurDAG->allnodes_begin()) { - SDNode *N = --Position; + SDNode *N = &*--Position; // Skip dead nodes and any non-machine opcodes. if (N->use_empty() || !N->isMachineOpcode()) continue; |