40 lines
1.0 KiB
C
40 lines
1.0 KiB
C
![]() |
//===- TargetFragment.h ---------------------------------------------------===//
|
||
|
//
|
||
|
// The MCLinker Project
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#ifndef MCLD_FRAGMENT_TARGETFRAGMENT_H_
|
||
|
#define MCLD_FRAGMENT_TARGETFRAGMENT_H_
|
||
|
|
||
|
#include "mcld/Fragment/Fragment.h"
|
||
|
|
||
|
namespace mcld {
|
||
|
|
||
|
class SectionData;
|
||
|
|
||
|
/** \class TargetFragment
|
||
|
* \brief TargetFragment is a kind of MCFragment inherited by
|
||
|
* target-depedent Fragment.
|
||
|
*/
|
||
|
class TargetFragment : public Fragment {
|
||
|
protected:
|
||
|
explicit TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL)
|
||
|
: Fragment(pKind, pSD) {}
|
||
|
|
||
|
public:
|
||
|
virtual ~TargetFragment() {}
|
||
|
|
||
|
static bool classof(const Fragment* F) {
|
||
|
return F->getKind() == Fragment::Target;
|
||
|
}
|
||
|
|
||
|
static bool classof(const TargetFragment*) { return true; }
|
||
|
};
|
||
|
|
||
|
} // namespace mcld
|
||
|
|
||
|
#endif // MCLD_FRAGMENT_TARGETFRAGMENT_H_
|