blob: cadc93d3a2e4cd6f27108eff7c8f3eedd7cc840e [file] [log] [blame]
//===- EhFrame.h ------------------------------------------------*- C++ -*-===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_ELF_EHFRAME_H
#define LLD_ELF_EHFRAME_H
#include "lld/Core/LLVM.h"
namespace lld {
namespace elf {
template <class ELFT> class InputSectionBase;
struct EhSectionPiece;
template <class ELFT>
size_t readEhRecordSize(InputSectionBase<ELFT> *S, size_t Off);
template <class ELFT> uint8_t getFdeEncoding(EhSectionPiece *P);
}
}
#endif