remove extra ; (#123352)

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

Co-authored-by: ImanHosseini <imanhosseini.17@gmail.com>
This commit is contained in:
Iman Hosseini 2025-01-17 15:11:52 +00:00 committed by GitHub
parent 0417cd1b3e
commit 63b0ab8425
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3125,4 +3125,4 @@ APInt APIntOps::pow(const APInt &X, int64_t N) {
Acc *= Base;
}
return Acc;
};
}