From 63b0ab84253f29f1f9b9136a02d589552b29c645 Mon Sep 17 00:00:00 2001 From: Iman Hosseini Date: Fri, 17 Jan 2025 15:11:52 +0000 Subject: [PATCH] remove extra ; (#123352) Remove erroneous extra semicolon in: https://github.com/llvm/llvm-project/pull/122788 Co-authored-by: ImanHosseini --- 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 38cf485733a93..4e45416b4598f 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; -}; +}