We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52fbf66 commit e6419aaCopy full SHA for e6419aa
2 files changed
expected/wasm32-wasi/predefined-macros.txt
@@ -648,7 +648,7 @@
648
#define FLT_MIN_10_EXP (-37)
649
#define FLT_MIN_EXP (-125)
650
#define FLT_RADIX 2
651
-#define FLT_ROUNDS (__flt_rounds())
+#define FLT_ROUNDS (__builtin_flt_rounds())
652
#define FLT_TRUE_MIN 1.40129846432481707092e-45F
653
#define FLUSHBAND 0x04
654
#define FLUSHO 0010000
libc-top-half/musl/include/float.h
@@ -5,8 +5,12 @@
5
extern "C" {
6
#endif
7
8
+#ifdef __wasilibc_unmodified_upstream
9
int __flt_rounds(void);
10
#define FLT_ROUNDS (__flt_rounds())
11
+#else
12
13
+#endif
14
15
16
0 commit comments