summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/arch/wasm32/fp_arch.h
blob: 707d512726ea7bbb960324490f7bda683057b28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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)
{
}