Skip to content

Commit b6e4bfd

Browse files
committed
[APInt][NFC] Fix typo vlalue->value
Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D102618
1 parent ab92a4c commit b6e4bfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/APInt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ inline double RoundSignedAPIntToDouble(const APInt &APIVal) {
22132213
return APIVal.signedRoundToDouble();
22142214
}
22152215

2216-
/// Converts the given APInt to a float vlalue.
2216+
/// Converts the given APInt to a float value.
22172217
inline float RoundAPIntToFloat(const APInt &APIVal) {
22182218
return float(RoundAPIntToDouble(APIVal));
22192219
}

0 commit comments

Comments
 (0)