aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-08 06:07:27 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-08 06:07:27 +0000
commit107050158612f7367dfff375245e415946d91a49 (patch)
treedff0f44d10ae67db64fb8dc3fce2866cb3867e64 /llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
parent74cf6ff5e523fa972af797a7a05f9d9b3dddfb5a (diff)
downloadllvm-107050158612f7367dfff375245e415946d91a49.zip
llvm-107050158612f7367dfff375245e415946d91a49.tar.gz
llvm-107050158612f7367dfff375245e415946d91a49.tar.bz2
Add LLVM_OVERRIDE to a few declarations.
llvm-svn: 201022
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetObjectFile.h')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetObjectFile.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h b/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
index 262c522..8042a79 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
+++ b/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
@@ -20,14 +20,16 @@ namespace llvm {
/// 64-bit PowerPC Linux.
class PPC64LinuxTargetObjectFile : public TargetLoweringObjectFileELF {
- virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
+ void Initialize(MCContext &Ctx, const TargetMachine &TM) LLVM_OVERRIDE;
- virtual const MCSection *
- SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
- Mangler *Mang, const TargetMachine &TM) const;
+ const MCSection *SelectSectionForGlobal(const GlobalValue *GV,
+ SectionKind Kind, Mangler *Mang,
+ const TargetMachine &TM) const
+ LLVM_OVERRIDE;
/// \brief Describe a TLS variable address within debug info.
- virtual const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const;
+ const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const
+ LLVM_OVERRIDE;
};
} // end namespace llvm