[llvm] remove extra ; (PR #123352)

Iman Hosseini via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 17 07:07:34 PST 2025


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

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

>From ceeeae17f194194f30e64bc84960a408e3e75e0a Mon Sep 17 00:00:00 2001
From: ImanHosseini <imanhosseini.17 at gmail.com>
Date: Fri, 17 Jan 2025 15:03:33 +0000
Subject: [PATCH] remove extra ;

---
 llvm/lib/Support/APInt.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-};
+}



More information about the llvm-commits mailing list