1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00

UserspaceEmulator: Fix typos in SoftFPU.[cpp|h]

This commit is contained in:
Hendiadyoin1 2021-07-23 00:53:06 +02:00 committed by Linus Groh
parent 74aba07b70
commit f2eff767a0
2 changed files with 3 additions and 3 deletions

View file

@ -186,7 +186,7 @@ ALWAYS_INLINE T SoftFPU::fpu_round(long double value) const
return static_cast<T>(floorl(value));
case RoundingMode::UP:
return static_cast<T>(ceill(value));
case RoundingMode::TRUNK:
case RoundingMode::TRUNC:
return static_cast<T>(truncl(value));
default:
VERIFY_NOT_REACHED();