Add incomplet long double math support to libmingwex.a
This commit is contained in:
11
winsup/mingw/mingwex/math/signbitl.c
Normal file
11
winsup/mingw/mingwex/math/signbitl.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#define __FP_SIGNBIT 0x0200
|
||||
|
||||
int __signbitl (long double x) {
|
||||
unsigned short sw;
|
||||
__asm__ ("fxam; fstsw %%ax;"
|
||||
: "=a" (sw)
|
||||
: "t" (x) );
|
||||
return sw & __FP_SIGNBIT;
|
||||
}
|
||||
|
||||
int __attribute__ ((alias ("__signbitl"))) signbitl (long double);
|
Reference in New Issue
Block a user