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