1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-19 00:02:09 +03:00

Correct powerpc64 s_floorl edge cases (bug 13886).

[BZ #13886]
Remove powerpc64/fpu/s_floorl.  Use fully correct ldbl-128bim/s_floorl.c.
This commit is contained in:
Adhemerval Zanella
2012-04-24 14:21:45 -05:00
committed by Ryan S. Arnold
parent 940ab4b3b8
commit 94e02fc410
5 changed files with 28 additions and 137 deletions

View File

@@ -3442,6 +3442,9 @@ floor_test (void)
TEST_f_f (floor, 10141204801825835211973625643008.5L, 10141204801825835211973625643008.0L);
TEST_f_f (floor, 10141204801825835211973625643008.75L, 10141204801825835211973625643008.0L);
TEST_f_f (floor, 10141204801825835211973625643009.5L, 10141204801825835211973625643009.0L);
TEST_f_f (floor, 0xf.ffffffffffffff8p+47L, 0xf.fffffffffffep+47L);
TEST_f_f (floor, -0x8.000000000000004p+48L, -0x8.000000000001p+48L);
#endif
END (floor);