diff options
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreTargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreTargetObjectFile.h | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/llvm/lib/Target/XCore/XCoreTargetObjectFile.h b/llvm/lib/Target/XCore/XCoreTargetObjectFile.h index bf9798d5085..fee84256b88 100644 --- a/llvm/lib/Target/XCore/XCoreTargetObjectFile.h +++ b/llvm/lib/Target/XCore/XCoreTargetObjectFile.h @@ -23,15 +23,18 @@ static const unsigned CodeModelLargeSize = 256; public: void Initialize(MCContext &Ctx, const TargetMachine &TM); - virtual const MCSection * - getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, - Mangler *Mang, const TargetMachine &TM) const; - - virtual const MCSection * - SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, - Mangler *Mang, const TargetMachine &TM) const; - - virtual const MCSection *getSectionForConstant(SectionKind Kind) const; + const MCSection *getExplicitSectionGlobal(const GlobalValue *GV, + SectionKind Kind, Mangler *Mang, + const TargetMachine &TM) const + LLVM_OVERRIDE; + + const MCSection *SelectSectionForGlobal(const GlobalValue *GV, + SectionKind Kind, Mangler *Mang, + const TargetMachine &TM) const + LLVM_OVERRIDE; + + const MCSection *getSectionForConstant(SectionKind Kind) const + LLVM_OVERRIDE; }; } // end namespace llvm |