Skip to content

Commit 83953c7

Browse files
committed
APInt.cpp: Prune a stray semicolon.
1 parent ab90d27 commit 83953c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/APInt.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2227,7 +2227,7 @@ void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
22272227
while (*Prefix) {
22282228
Str.push_back(*Prefix);
22292229
++Prefix;
2230-
};
2230+
}
22312231

22322232
// We insert the digits backward, then reverse them to get the right order.
22332233
unsigned StartDig = Str.size();

0 commit comments

Comments
 (0)