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

Reviewed By: fhahn

Differential Revision: https://reviews.llvm.org/D102618
This commit is contained in:
Andy Yankovsky 2021-05-17 15:11:19 +02:00
parent ab92a4c26f
commit b6e4bfd185
1 changed files with 1 additions and 1 deletions

View 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));
}