1//===- CIE.cpp ------------------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include <mcld/LD/EhFrame.h>
10#include <mcld/LD/CIE.h>
11
12using namespace mcld;
13
14//===----------------------------------------------------------------------===//
15// CIE
16//===----------------------------------------------------------------------===//
17CIE::CIE(MemoryRegion& pRegion, uint8_t pFDEEncode)
18  : RegionFragment(pRegion), m_FDEEncoding(pFDEEncode) {
19}
20
21CIE::~CIE()
22{
23}
24