Fix fmod regression.

This commit is contained in:
Christoffer Lerno
2025-06-04 15:25:18 +02:00
parent 72cc8e430a
commit 45a0895c39

View File

@@ -115,7 +115,7 @@ fn float fmodf(float x, float y) @extern("fmodf") @weak @nostrip
}
else
{
uy.i &= (ulong)-1 >> 9;
uy.i &= (uint)-1 >> 9;
uy.i |= 1U << 23;
}