1 //===- X86ELFSectLinker.h -------------------------------------------------===// 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 #ifndef X86_ELFSECTLINKER_H 10 #define X86_ELFSECTLINKER_H 11 #ifdef ENABLE_UNITTEST 12 #include <gtest.h> 13 #endif 14 #include <mcld/CodeGen/SectLinker.h> 15 16 namespace mcld 17 { 18 19 /** \class X86ELFSectLinker 20 * \brief X86ELFSectLinker sets up the environment for linking. 21 * 22 * \see 23 */ 24 class X86ELFSectLinker : public SectLinker 25 { 26 public: 27 X86ELFSectLinker(SectLinkerOption &pOption, 28 mcld::TargetLDBackend &pLDBackend); 29 30 ~X86ELFSectLinker(); 31 }; 32 33 } // namespace of mcld 34 35 #endif 36 37