[llvm] b6e4bfd - [APInt][NFC] Fix typo vlalue->value

Andy Yankovsky via llvm-commits llvm-commits at lists.llvm.org
Mon May 17 07:19:45 PDT 2021


Author: Andy Yankovsky
Date: 2021-05-17T16:18:22+02:00
New Revision: b6e4bfd18571b65bf3c537f52225d8ee6c2953c4

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

LOG: [APInt][NFC] Fix typo vlalue->value

Reviewed By: fhahn

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

Added: 
    

Modified: 
    llvm/include/llvm/ADT/APInt.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h
index 7b531bad0d83..e5290fb58590 100644
--- a/llvm/include/llvm/ADT/APInt.h
+++ b/llvm/include/llvm/ADT/APInt.h
@@ -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));
 }


        


More information about the llvm-commits mailing list