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

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 27 23:08:14 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-backend-risc-v

Author: None (hchandel)

<details>
<summary>Changes</summary>

Removes Unnecessary Semicolon

---
Full diff: https://github.com/llvm/llvm-project/pull/86911.diff


1 Files Affected:

- (modified) llvm/lib/Target/RISCV/RISCVISelLowering.h (+1-1) 


``````````diff
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.

``````````

</details>


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


More information about the llvm-commits mailing list