Sign in
third-party-mirror
/
mingw-w64
/
7cdb53961187ee6d1a487af1d45951247c6ef66a
/
.
/
mingw-w64-crt
/
math
/
fucom.c
blob: 774c1cb561ba6c38d925f0692a5a29a41dd312df [
file
] [
log
] [
blame
]
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
;
}