[PATCH] D102618: Fix typo vlalue->value

Andy Yankovsky via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 17 06:11:37 PDT 2021


werat created this revision.
Herald added a subscriber: dexonsmith.
werat requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

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.345851.patch
Type: text/x-patch
Size: 440 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210517/2e1b30ab/attachment.bin>


More information about the llvm-commits mailing list