blob: ae28ea73985b65d7de07f6d4e643cc0dad916af4 [file] [log] [blame]
//===- impl.cpp -----------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "X86GOT.h"
#include <mcld/LD/LDFileFormat.h>
#include <mcld/LD/SectionData.h>
namespace {
const size_t X86GOTEntrySize = 4;
}
using namespace mcld;
//===----------------------------------------------------------------------===//
// X86GOT
//===----------------------------------------------------------------------===//
X86GOT::X86GOT(LDSection& pSection)
: GOT(pSection, X86GOTEntrySize)
{
}
X86GOT::~X86GOT()
{
}