blob: 5ddb166da6cf0efd461e2a96e26ac94115107ea0 [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)
: RegionFragment(pRegion), m_FDEEncoding(pFDEEncode) {
}
CIE::~CIE()
{
}