mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
UserspaceEmulator: Fix typos in SoftFPU.[cpp|h]
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -85,7 +85,7 @@ private:
|
||||
NEAREST = 0b00,
|
||||
DOWN = 0b01,
|
||||
UP = 0b10,
|
||||
TRUNK = 0b11
|
||||
TRUNC = 0b11
|
||||
};
|
||||
|
||||
void fpu_dump_env()
|
||||
@@ -122,7 +122,7 @@ private:
|
||||
case FPU_Exception::InvalidOperation:
|
||||
return "Invalid Operation";
|
||||
case FPU_Exception::DenormalizedOperand:
|
||||
return "Denormalized Operant";
|
||||
return "Denormalized Operand";
|
||||
case FPU_Exception::ZeroDivide:
|
||||
return "Divide by Zero";
|
||||
case FPU_Exception::Overflow:
|
||||
|
||||
Reference in New Issue
Block a user