From b6e4bfd18571b65bf3c537f52225d8ee6c2953c4 Mon Sep 17 00:00:00 2001 From: Andy Yankovsky Date: Mon, 17 May 2021 15:11:19 +0200 Subject: [PATCH] [APInt][NFC] Fix typo vlalue->value Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D102618 --- llvm/include/llvm/ADT/APInt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index 7b531ba..e5290fb 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)); } -- 2.7.4