wasi-libc/libc-top-half/musl/arch/wasm32/fp_arch.h
Dan Gohman d4db3fa212 Update to musl 1.1.23.
See the WHATSNEW file for details; among other things, this contains new
math library implementation for log/exp/pow.
2019-08-07 17:53:41 -07:00

26 lines
511 B
C

// WebAssembly has no floating-point exceptions or alternate rounding modes,
// so there's no need to prevent expressions from moving or force their
// evaluation.
#define fp_barrierf fp_barrierf
static inline float fp_barrierf(float x)
{
return x;
}
#define fp_barrier fp_barrier
static inline double fp_barrier(double x)
{
return x;
}
#define fp_force_evalf fp_force_evalf
static inline void fp_force_evalf(float x)
{
}
#define fp_force_eval fp_force_eval
static inline void fp_force_eval(double x)
{
}