Sign in
cobalt
/
cobalt
/
f9bc0139df6e6eb149345ab9b6ffcc40603fc09f
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
fminf.c
blob: faf0e47e99e5ea7bf13e21ed339be5ba1e35bc6e [
file
] [
log
] [
blame
]
#include
<math.h>
#ifdef
__VSX__
float
fminf
(
float
x
,
float
y
)
{
__asm__
(
"xsmindp %x0, %x1, %x2"
:
"=ww"
(
x
)
:
"ww"
(
x
),
"ww"
(
y
));
return
x
;
}
#else
#include
"../fminf.c"
#endif