From a32d0e9ec0127d83c44c1d06c2fbf19fd8bfe96c Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 27 May 2015 15:14:11 +0000 Subject: Delete MCSectionData. llvm-svn: 238331 --- llvm/lib/MC/MCMachOStreamer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/MC/MCMachOStreamer.cpp') diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp index 011db484751..629734036f5 100644 --- a/llvm/lib/MC/MCMachOStreamer.cpp +++ b/llvm/lib/MC/MCMachOStreamer.cpp @@ -479,8 +479,8 @@ void MCMachOStreamer::FinishImpl() { for (MCAssembler::iterator it = getAssembler().begin(), ie = getAssembler().end(); it != ie; ++it) { const MCSymbol *CurrentAtom = nullptr; - for (MCSectionData::iterator it2 = it->begin(), - ie2 = it->end(); it2 != ie2; ++it2) { + for (MCSection::iterator it2 = it->begin(), ie2 = it->end(); it2 != ie2; + ++it2) { if (const MCSymbol *Symbol = DefiningSymbolMap.lookup(it2)) CurrentAtom = Symbol; it2->setAtom(CurrentAtom); -- cgit v1.2.3