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/CodeGen/AsmPrinter/DwarfUnit.h | |
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/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index f92b0852c81..c87f2bd15d4 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -573,7 +573,7 @@ public: /// either DW_FORM_addr or DW_FORM_GNU_addr_index. void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label); - DwarfCompileUnit &getCU() LLVM_OVERRIDE { return *this; } + DwarfCompileUnit &getCU() override { return *this; } }; class DwarfTypeUnit : public DwarfUnit { @@ -592,13 +592,13 @@ public: /// Emit the header for this unit, not including the initial length field. void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym) const - LLVM_OVERRIDE; - unsigned getHeaderSize() const LLVM_OVERRIDE { + override; + unsigned getHeaderSize() const override { return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature sizeof(uint32_t); // Type DIE Offset } void initSection(const MCSection *Section); - DwarfCompileUnit &getCU() LLVM_OVERRIDE { return CU; } + DwarfCompileUnit &getCU() override { return CU; } }; } // end llvm namespace #endif |