summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCSection.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-10-10 00:13:11 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-10-10 00:13:11 +0000
commita5f45da27e5c63102780bcfb548873e1d268e5f1 (patch)
treed9fa5715905c4fb8779771c9b7ee85f67295bcbe /llvm/lib/MC/MCSection.cpp
parentd90a4176ffd84517da1fbb47fa33aef1d5ad6e4c (diff)
downloadbcm5719-llvm-a5f45da27e5c63102780bcfb548873e1d268e5f1.tar.gz
bcm5719-llvm-a5f45da27e5c63102780bcfb548873e1d268e5f1.zip
MC: Remove implicit ilist iterator conversions, NFC
llvm-svn: 249922
Diffstat (limited to 'llvm/lib/MC/MCSection.cpp')
-rw-r--r--llvm/lib/MC/MCSection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp
index e0d29bbd660..dbd544a44ce 100644
--- a/llvm/lib/MC/MCSection.cpp
+++ b/llvm/lib/MC/MCSection.cpp
@@ -72,7 +72,7 @@ MCSection::getSubsectionInsertionPoint(unsigned Subsection) {
if (MI == SubsectionFragmentMap.end())
IP = end();
else
- IP = MI->second;
+ IP = MI->second->getIterator();
if (!ExactMatch && Subsection != 0) {
// The GNU as documentation claims that subsections have an alignment of 4,
// although this appears not to be the case.
OpenPOWER on IntegriCloud