aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2024-10-15 21:12:10 +0900
committerNAKAMURA Takumi <geek4civic@gmail.com>2024-10-17 20:04:00 +0900
commit83953c7df107af26ebf9ab82e01623c991637199 (patch)
treeabe1ed52e2fc6c130bd788de781bb05dead32f99 /llvm/lib/Support/APInt.cpp
parentab90d2793cf56758a91f7a7ae027850af2455d3e (diff)
downloadllvm-83953c7df107af26ebf9ab82e01623c991637199.zip
llvm-83953c7df107af26ebf9ab82e01623c991637199.tar.gz
llvm-83953c7df107af26ebf9ab82e01623c991637199.tar.bz2
APInt.cpp: Prune a stray semicolon.
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r--llvm/lib/Support/APInt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 23e365f..ea8295f 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -2227,7 +2227,7 @@ void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
while (*Prefix) {
Str.push_back(*Prefix);
++Prefix;
- };
+ }
// We insert the digits backward, then reverse them to get the right order.
unsigned StartDig = Str.size();