X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FCodeGen%2FAsmPrinter%2FWinCodeViewLineTables.h;h=1f34c987cf3b44e1a68f0ed12877ccdf38cb0a6f;hb=667376028fc44bbcd861e6a70ff0e04b29f177d1;hp=b79473b2fdea5c0ea5470cab8f332ed37090ed37;hpb=f4ec8bfaecef4e38f713b9e05d89869b023e1ce8;p=oota-llvm.git diff --git a/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h b/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h index b79473b2fde..1f34c987cf3 100644 --- a/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h +++ b/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h @@ -122,22 +122,22 @@ public: free(I->second); } - virtual void setSymbolSize(const llvm::MCSymbol *, uint64_t) {} + void setSymbolSize(const llvm::MCSymbol *, uint64_t) override {} /// \brief Emit the COFF section that holds the line table information. - virtual void endModule(); + void endModule() override; /// \brief Gather pre-function debug information. - virtual void beginFunction(const MachineFunction *MF); + void beginFunction(const MachineFunction *MF) override; /// \brief Gather post-function debug information. - virtual void endFunction(const MachineFunction *); + void endFunction(const MachineFunction *) override; /// \brief Process beginning of an instruction. - virtual void beginInstruction(const MachineInstr *MI); + void beginInstruction(const MachineInstr *MI) override; /// \brief Process end of an instruction. - virtual void endInstruction() {} + void endInstruction() override {} }; } // End of namespace llvm