forked from OSchip/llvm-project
[APInt][NFC] Fix typo vlalue->value
Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D102618
This commit is contained in:
parent
ab92a4c26f
commit
b6e4bfd185
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue