[llvm] 83953c7 - APInt.cpp: Prune a stray semicolon.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 17 04:10:46 PDT 2024


Author: NAKAMURA Takumi
Date: 2024-10-17T20:04:00+09:00
New Revision: 83953c7df107af26ebf9ab82e01623c991637199

URL: https://github.com/llvm/llvm-project/commit/83953c7df107af26ebf9ab82e01623c991637199
DIFF: https://github.com/llvm/llvm-project/commit/83953c7df107af26ebf9ab82e01623c991637199.diff

LOG: APInt.cpp: Prune a stray semicolon.

Added: 
    

Modified: 
    llvm/lib/Support/APInt.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 23e365f16d8fea..ea8295f95c751a 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();


        


More information about the llvm-commits mailing list