C++程序  |  25行  |  744 B

//===- 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()
{
}