blob: 1aa196b5f83a7ec18d469f7ee716a5c175fb4b62 [file] [log] [blame]
//===- FDE.cpp ------------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <mcld/LD/FDE.h>
#include <mcld/LD/EhFrame.h>
using namespace mcld;
//===----------------------------------------------------------------------===//
// FDE
//===----------------------------------------------------------------------===//
FDE::FDE(MemoryRegion& pRegion, const CIE& pCIE, Offset pPCBeginOffset)
: RegionFragment(pRegion), m_CIE(pCIE), m_PCBeginOffset(pPCBeginOffset) {
}
FDE::~FDE()
{
}