[APInt][NFC] Fix typo vlalue->value
authorAndy Yankovsky <weratt@gmail.com>
Mon, 17 May 2021 13:11:19 +0000 (15:11 +0200)
committerAndy Yankovsky <weratt@gmail.com>
Mon, 17 May 2021 14:18:22 +0000 (16:18 +0200)
Reviewed By: fhahn

Differential Revision: https://reviews.llvm.org/D102618

llvm/include/llvm/ADT/APInt.h

index 7b531ba..e5290fb 100644 (file)
@@ -2213,7 +2213,7 @@ inline double RoundSignedAPIntToDouble(const APInt &APIVal) {
   return APIVal.signedRoundToDouble();
 }
 
-/// Converts the given APInt to a float vlalue.
+/// Converts the given APInt to a float value.
 inline float RoundAPIntToFloat(const APInt &APIVal) {
   return float(RoundAPIntToDouble(APIVal));
 }