[PATCH] D102618: [APInt][NFC] Fix typo vlalue->value

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


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb6e4bfd18571: [APInt][NFC] Fix typo vlalue->value (authored by werat).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102618/new/

https://reviews.llvm.org/D102618

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


Index: llvm/include/llvm/ADT/APInt.h
===================================================================
--- llvm/include/llvm/ADT/APInt.h
+++ llvm/include/llvm/ADT/APInt.h
@@ -2213,7 +2213,7 @@
   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));
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102618.345868.patch
Type: text/x-patch
Size: 440 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210517/f916d0b9/attachment.bin>


More information about the llvm-commits mailing list