Add incomplet long double math support to libmingwex.a
This commit is contained in:
16
winsup/mingw/mingwex/math/logbf.c
Normal file
16
winsup/mingw/mingwex/math/logbf.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||||
* Changes for long double by Ulrich Drepper <drepper@cygnus.com>
|
||||
* Public domain.
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
|
||||
float
|
||||
logbf (float x)
|
||||
{
|
||||
float res;
|
||||
asm ("fxtract\n\t"
|
||||
"fstp %%st" : "=t" (res) : "0" (x));
|
||||
return res;
|
||||
}
|
Reference in New Issue
Block a user