blob: c2f43174bed58f004843993effcbd60e2469e6ac [file] [log] [blame]
//===- CIE.cpp ------------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <mcld/LD/EhFrame.h>
#include <mcld/LD/CIE.h>
using namespace mcld;
//==========================
// CIE
CIE::CIE(MemoryRegion& pRegion, uint8_t pFDEEncode)
: MCRegionFragment(pRegion), m_FDEEncoding(pFDEEncode) {
}
CIE::~CIE()
{
}