[llvm] 63b0ab8 - remove extra ; (#123352)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 17 07:11:56 PST 2025
Author: Iman Hosseini
Date: 2025-01-17T15:11:52Z
New Revision: 63b0ab84253f29f1f9b9136a02d589552b29c645
URL: https://github.com/llvm/llvm-project/commit/63b0ab84253f29f1f9b9136a02d589552b29c645
DIFF: https://github.com/llvm/llvm-project/commit/63b0ab84253f29f1f9b9136a02d589552b29c645.diff
LOG: remove extra ; (#123352)
Remove erroneous extra semicolon in:
https://github.com/llvm/llvm-project/pull/122788
Co-authored-by: ImanHosseini <imanhosseini.17 at gmail.com>
Added:
Modified:
llvm/lib/Support/APInt.cpp
Removed:
################################################################################
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