David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06: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)
{
}