diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
commit | 73156025e021f98786009a06c794f8b8f369b7a3 (patch) | |
tree | b20fd2bf0ddc155002a79f68ef6859b54f9338b7 /llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp | |
parent | e55d9bf508471c97e7bad9e5f63e4fe103cb3042 (diff) | |
download | bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.tar.gz bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.zip |
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
llvm-svn: 202621
Diffstat (limited to 'llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp index 36e3d83d4d5..d0c2cfa6298 100644 --- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp +++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp @@ -26,12 +26,12 @@ protected: // Override MCELFObjectTargetWriter. virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup, bool IsPCRel, bool IsRelocWithSymbol, - int64_t Addend) const LLVM_OVERRIDE; + int64_t Addend) const override; virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, const MCFragment &F, const MCFixup &Fixup, - bool IsPCRel) const LLVM_OVERRIDE; + bool IsPCRel) const override; }; } // end anonymouse namespace |