[llvm] remove extra ; (PR #123352)

via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 17 07:08:10 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-support

Author: Iman Hosseini (ImanHosseini)

<details>
<summary>Changes</summary>

Remove erroneous extra semicolon in: https://github.com/llvm/llvm-project/pull/122788 

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


1 Files Affected:

- (modified) llvm/lib/Support/APInt.cpp (+1-1) 


``````````diff
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 38cf485733a937..4e45416b4598f8 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -3125,4 +3125,4 @@ APInt APIntOps::pow(const APInt &X, int64_t N) {
     Acc *= Base;
   }
   return Acc;
-};
+}

``````````

</details>


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


More information about the llvm-commits mailing list