mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
[C++11] Add 'override' keyword to virtual methods that override their base class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203339 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user