[llvm] [RISCV] Remove virtual from getOutliningTypeImpl override. NFC (PR #128482)

Sudharsan Veeravalli via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 00:45:22 PST 2025


https://github.com/svs-quic created https://github.com/llvm/llvm-project/pull/128482

None

>From f515aeff794a27c32dffe9213087dae4b0ca862c Mon Sep 17 00:00:00 2001
From: Sudharsan Veeravalli <quic_svs at quicinc.com>
Date: Mon, 24 Feb 2025 14:13:56 +0530
Subject: [PATCH] [RISCV] Remove virtual from getOutliningTypeImpl override.
 NFC

---
 llvm/lib/Target/RISCV/RISCVInstrInfo.h | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/llvm/lib/Target/RISCV/RISCVInstrInfo.h b/llvm/lib/Target/RISCV/RISCVInstrInfo.h
index afbc8df50b452..95d79da771dd8 100644
--- a/llvm/lib/Target/RISCV/RISCVInstrInfo.h
+++ b/llvm/lib/Target/RISCV/RISCVInstrInfo.h
@@ -217,10 +217,9 @@ class RISCVInstrInfo : public RISCVGenInstrInfo {
       unsigned MinRepeats) const override;
 
   // Return if/how a given MachineInstr should be outlined.
-  virtual outliner::InstrType
-  getOutliningTypeImpl(const MachineModuleInfo &MMI,
-                       MachineBasicBlock::iterator &MBBI,
-                       unsigned Flags) const override;
+  outliner::InstrType getOutliningTypeImpl(const MachineModuleInfo &MMI,
+                                           MachineBasicBlock::iterator &MBBI,
+                                           unsigned Flags) const override;
 
   // Insert a custom frame for outlined functions.
   void buildOutlinedFrame(MachineBasicBlock &MBB, MachineFunction &MF,



More information about the llvm-commits mailing list