mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 17:59:28 +08:00
12 lines
187 B
C
12 lines
187 B
C
|
int
|
||
|
__fp_unordered_compare (long double x, long double y){
|
||
|
unsigned short retval;
|
||
|
__asm__ (
|
||
|
"fucom %%st(1);"
|
||
|
"fnstsw;"
|
||
|
: "=a" (retval)
|
||
|
: "t" (x), "u" (y)
|
||
|
);
|
||
|
return retval;
|
||
|
}
|