mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +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@203220 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -229,13 +229,13 @@ namespace llvm {
|
||||
/// the level of the whole MachineFunction. By default does nothing.
|
||||
virtual void finalizeSchedule() {}
|
||||
|
||||
virtual void dumpNode(const SUnit *SU) const;
|
||||
void dumpNode(const SUnit *SU) const override;
|
||||
|
||||
/// Return a label for a DAG node that points to an instruction.
|
||||
virtual std::string getGraphNodeLabel(const SUnit *SU) const;
|
||||
std::string getGraphNodeLabel(const SUnit *SU) const override;
|
||||
|
||||
/// Return a label for the region of code covered by the DAG.
|
||||
virtual std::string getDAGName() const;
|
||||
std::string getDAGName() const override;
|
||||
|
||||
/// \brief Fix register kill flags that scheduling has made invalid.
|
||||
void fixupKills(MachineBasicBlock *MBB);
|
||||
|
Reference in New Issue
Block a user