Fix bugs and have emulator emulate itself

This commit is contained in:
Justine Tunney
2020-08-31 05:17:31 -07:00
parent 5aabacb361
commit bd29223891
111 changed files with 1283 additions and 2073 deletions

View File

@@ -59,7 +59,7 @@ long double fyl2xp1(long double x, long double y) {
}
long double fscale(long double significand, long double exponent) {
return scalbnl(significand, exponent);
return scalbl(significand, exponent);
}
long double fprem(long double dividend, long double modulus, uint32_t *sw) {