[llvm] [RISCV] Remove Unnecessary Semicolon. NFC (PR #86911)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 27 22:51:49 PDT 2024


https://github.com/hchandel created https://github.com/llvm/llvm-project/pull/86911

Removes Unnecessary Semicolon

>From 1bac6bb8729d96e40be9a05799cbb9efa61fe7a9 Mon Sep 17 00:00:00 2001
From: Harsh Chandel <hchandel at hu-hchandel-hyd.qualcomm.com>
Date: Thu, 28 Mar 2024 11:14:50 +0530
Subject: [PATCH] [RISCV] Remove Unnecessary Semicolon. NFC

---
 llvm/lib/Target/RISCV/RISCVISelLowering.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.h b/llvm/lib/Target/RISCV/RISCVISelLowering.h
index c11b1464757c7f..ace5b3fd2b95b4 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.h
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.h
@@ -1000,7 +1000,7 @@ class RISCVTargetLowering : public TargetLowering {
   /// RISC-V doesn't have flags so it's better to perform the and/or in a GPR.
   bool shouldNormalizeToSelectSequence(LLVMContext &, EVT) const override {
     return false;
-  };
+  }
 
   /// For available scheduling models FDIV + two independent FMULs are much
   /// faster than two FDIVs.



More information about the llvm-commits mailing list