blob: 04060acc9beef4e0665890f0cf745e5671aa3a73 [file] [log] [blame]
//===- AArch64ELFDynamic.h ------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TARGET_AARCH64_AARCH64ELFDYNAMIC_H
#define TARGET_AARCH64_AARCH64ELFDYNAMIC_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/Target/ELFDynamic.h>
namespace mcld {
class AArch64ELFDynamic : public ELFDynamic {
public:
AArch64ELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
~AArch64ELFDynamic();
private:
void reserveTargetEntries(const ELFFileFormat& pFormat);
void applyTargetEntries(const ELFFileFormat& pFormat);
};
} // namespace of mcld
#endif