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/ELFObjectWriter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/MC/ELFObjectWriter.cpp') diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index b51ba75..18746d1 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -1096,7 +1096,7 @@ ELFObjectWriter::createRelocationSection(MCContext &Ctx, static SmallVector getUncompressedData(const MCAsmLayout &Layout, - const MCSectionData::FragmentListType &Fragments) { + const MCSection::FragmentListType &Fragments) { SmallVector UncompressedData; for (const MCFragment &F : Fragments) { const SmallVectorImpl *Contents; @@ -1154,7 +1154,7 @@ void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec, } // Gather the uncompressed data from all the fragments. - const MCSectionData::FragmentListType &Fragments = Section.getFragmentList(); + const MCSection::FragmentListType &Fragments = Section.getFragmentList(); SmallVector UncompressedData = getUncompressedData(Layout, Fragments); -- cgit v1.1