opnsense-ports/emulators/virtualbox-ose/files/patch-src-recompiler-Sun-testmath.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

22 lines
629 B
C

--- src/recompiler/Sun/testmath.c.orig 2011-01-14 21:15:07.000000000 +0100
+++ src/recompiler/Sun/testmath.c 2011-08-05 13:54:49.000000000 +0200
@@ -261,8 +261,6 @@
#endif
set_cw(0x27f);
- CHECK(logl(2.7182818284590452353602874713526625L), 1.0);
-
CHECK(remainderl(1.0L, 1.0L), 0.0);
CHECK(remainderl(1.0L, 1.5L), -0.5);
CHECK(remainderl(42.0L, 34.25L), 7.75);
@@ -315,10 +313,6 @@
CHECK(tanl(0.0L), 0.0);
CHECK(tanl(0.7853981633974483096156608458198757L), 1.0);
- CHECK(powl(0.0, 0.0), 1.0);
- CHECK(powl(2.0, 2.0), 4.0);
- CHECK(powl(3.0, 3.0), 27.0);
-
return cErrors;
}