Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
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
;
}