diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-10 00:13:11 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-10 00:13:11 +0000 |
commit | a5f45da27e5c63102780bcfb548873e1d268e5f1 (patch) | |
tree | d9fa5715905c4fb8779771c9b7ee85f67295bcbe /llvm/lib/MC/MCSection.cpp | |
parent | d90a4176ffd84517da1fbb47fa33aef1d5ad6e4c (diff) | |
download | bcm5719-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.cpp | 2 |
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. |