@@ -26,20 +26,19 @@ struct PerFunctionMIParsingState;
2626class AMDGPUMIRFormatter final : public MIRFormatter {
2727public:
2828 AMDGPUMIRFormatter () = default ;
29- virtual ~AMDGPUMIRFormatter () = default ;
29+ ~AMDGPUMIRFormatter () override = default ;
3030
3131 // / Implement target specific printing for machine operand immediate value, so
3232 // / that we can have more meaningful mnemonic than a 64-bit integer. Passing
3333 // / None to OpIdx means the index is unknown.
34- virtual void printImm (raw_ostream &OS, const MachineInstr &MI,
35- std::optional<unsigned > OpIdx,
36- int64_t Imm) const override ;
34+ void printImm (raw_ostream &OS, const MachineInstr &MI,
35+ std::optional<unsigned > OpIdx, int64_t Imm) const override ;
3736
3837 // / Implement target specific parsing of immediate mnemonics. The mnemonic is
3938 // / a string with a leading dot.
40- virtual bool parseImmMnemonic (const unsigned OpCode, const unsigned OpIdx,
41- StringRef Src, int64_t &Imm,
42- ErrorCallbackType ErrorCallback) const override ;
39+ bool parseImmMnemonic (const unsigned OpCode, const unsigned OpIdx,
40+ StringRef Src, int64_t &Imm,
41+ ErrorCallbackType ErrorCallback) const override ;
4342
4443 // / Implement target specific parsing of target custom pseudo source value.
4544 bool
0 commit comments