1//===- FDE.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
10#include <mcld/LD/FDE.h>
11#include <mcld/LD/EhFrame.h>
12
13using namespace mcld;
14
15//===----------------------------------------------------------------------===//
16// FDE
17//===----------------------------------------------------------------------===//
18FDE::FDE(MemoryRegion& pRegion, const CIE& pCIE, Offset pPCBeginOffset)
19  : RegionFragment(pRegion), m_CIE(pCIE), m_PCBeginOffset(pPCBeginOffset) {
20}
21
22FDE::~FDE()
23{
24}
25