Home | History | Annotate | Download | only in Target
      1 //===- PLT.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 #include "mcld/Target/PLT.h"
     10 
     11 #include "mcld/IRBuilder.h"
     12 
     13 namespace mcld {
     14 
     15 class GOT;
     16 
     17 //===----------------------------------------------------------------------===//
     18 // PLT
     19 //===----------------------------------------------------------------------===//
     20 PLT::PLT(LDSection& pSection) : m_Section(pSection) {
     21   m_pSectionData = IRBuilder::CreateSectionData(pSection);
     22 }
     23 
     24 PLT::~PLT() {
     25 }
     26 
     27 }  // namespace mcld
     28