diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-08 06:07:27 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-08 06:07:27 +0000 |
commit | 107050158612f7367dfff375245e415946d91a49 (patch) | |
tree | dff0f44d10ae67db64fb8dc3fce2866cb3867e64 /llvm/lib/Target/X86/X86TargetObjectFile.h | |
parent | 74cf6ff5e523fa972af797a7a05f9d9b3dddfb5a (diff) | |
download | bcm5719-llvm-107050158612f7367dfff375245e415946d91a49.tar.gz bcm5719-llvm-107050158612f7367dfff375245e415946d91a49.zip |
Add LLVM_OVERRIDE to a few declarations.
llvm-svn: 201022
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetObjectFile.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/llvm/lib/Target/X86/X86TargetObjectFile.h b/llvm/lib/Target/X86/X86TargetObjectFile.h index 5fcd0dfba67..77046e2b421 100644 --- a/llvm/lib/Target/X86/X86TargetObjectFile.h +++ b/llvm/lib/Target/X86/X86TargetObjectFile.h @@ -20,31 +20,34 @@ namespace llvm { /// x86-64. class X86_64MachoTargetObjectFile : public TargetLoweringObjectFileMachO { public: - virtual 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; // getCFIPersonalitySymbol - The symbol that gets passed to // .cfi_personality. - virtual MCSymbol * - getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang, - MachineModuleInfo *MMI) const; + MCSymbol *getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang, + MachineModuleInfo *MMI) const + LLVM_OVERRIDE; }; /// X86LinuxTargetObjectFile - This implementation is used for linux x86 /// and x86-64. class X86LinuxTargetObjectFile : public TargetLoweringObjectFileELF { - virtual void Initialize(MCContext &Ctx, const TargetMachine &TM); + void Initialize(MCContext &Ctx, const TargetMachine &TM) 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; }; /// \brief This implementation is used for Windows targets on x86 and x86-64. class X86WindowsTargetObjectFile : public TargetLoweringObjectFileCOFF { - virtual const MCExpr *getExecutableRelativeSymbol(const ConstantExpr *CE, - Mangler *Mang) const; + const MCExpr *getExecutableRelativeSymbol(const ConstantExpr *CE, + Mangler *Mang) const + LLVM_OVERRIDE; }; } // end namespace llvm |