[ADT] fix typo in code block comment; NFC
authorSanjay Patel <spatel@rotateright.com>
Thu, 29 Apr 2021 14:43:11 +0000 (10:43 -0400)
committerSanjay Patel <spatel@rotateright.com>
Thu, 29 Apr 2021 16:09:22 +0000 (12:09 -0400)
llvm/include/llvm/ADT/APInt.h

index 0cd4a0c..7b531ba 100644 (file)
@@ -2181,7 +2181,7 @@ inline const APInt &smax(const APInt &A, const APInt &B) {
   return A.sgt(B) ? A : B;
 }
 
-/// Determine the smaller of two APInts considered to be signed.
+/// Determine the smaller of two APInts considered to be unsigned.
 inline const APInt &umin(const APInt &A, const APInt &B) {
   return A.ult(B) ? A : B;
 }