summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMTargetObjectFile.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
commit3f2e9e5e79687c5589cef23cb93badabdec6736f (patch)
treebf7ce028c40ca3bcd0681a70d472a182df29f7b9 /lib/Target/ARM/ARMTargetObjectFile.h
parent6f1819f2e6465d9a29b25b49a4d60864e50946f6 (diff)
downloadllvm-3f2e9e5e79687c5589cef23cb93badabdec6736f.tar.gz
llvm-3f2e9e5e79687c5589cef23cb93badabdec6736f.tar.bz2
llvm-3f2e9e5e79687c5589cef23cb93badabdec6736f.tar.xz
Add LLVM_OVERRIDE to a few declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201022 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMTargetObjectFile.h')
-rw-r--r--lib/Target/ARM/ARMTargetObjectFile.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARMTargetObjectFile.h b/lib/Target/ARM/ARMTargetObjectFile.h
index 9767045ace..b3460c491b 100644
--- a/lib/Target/ARM/ARMTargetObjectFile.h
+++ b/lib/Target/ARM/ARMTargetObjectFile.h
@@ -26,15 +26,17 @@ public:
AttributesSection(NULL)
{}
- virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
+ void Initialize(MCContext &Ctx, const TargetMachine &TM) LLVM_OVERRIDE;
- const MCExpr *
- getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
- MachineModuleInfo *MMI, unsigned Encoding,
- MCStreamer &Streamer) const;
+ const MCExpr *getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
+ MachineModuleInfo *MMI,
+ unsigned Encoding,
+ MCStreamer &Streamer) 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