mailing list of musl libc
 help / color / mirror / code / Atom feed
af4309d9f7c351c8699163bc4e7a0ec3ef24c485 blob 795 bytes (raw)

 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
#include <float.h>

#define fp_barrierf fp_barrierf
static inline float_t fp_barrierf(float_t x)
{
	__asm__ __volatile__ ("" : "+x"(x));
	return x;
}

#define fp_barrier fp_barrier
static inline double_t fp_barrier(double_t x)
{
	__asm__ __volatile__ ("" : "+x"(x));
	return x;
}

#define fp_barrierl fp_barrierl
static inline long double fp_barrierl(long double x)
{
	__asm__ __volatile__ ("" : "+t"(x));
	return x;
}

#define fp_force_evalf fp_force_evalf
static inline void fp_force_evalf(float x)
{
	__asm__ __volatile__ ("" : "+x"(x));
}

#define fp_force_eval fp_force_eval
static inline void fp_force_eval(double x)
{
	__asm__ __volatile__ ("" : "+x"(x));
}

#define fp_force_evall fp_force_evall
static inline void fp_force_evall(long double x)
{
	__asm__ __volatile__ ("" : "+t"(x));
}
debug log:

solving af4309d9 ...
found af4309d9 in https://inbox.vuxu.org/musl/20190427221334.GK26605@port70.net/

applying [1/1] https://inbox.vuxu.org/musl/20190427221334.GK26605@port70.net/
diff --git a/arch/x32/fp_arch.h b/arch/x32/fp_arch.h
new file mode 100644
index 00000000..af4309d9

Checking patch arch/x32/fp_arch.h...
Applied patch arch/x32/fp_arch.h cleanly.

index at:
100644 af4309d9f7c351c8699163bc4e7a0ec3ef24c485	arch/x32/fp_arch.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).