We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 722fc66 commit 2762de7Copy full SHA for 2762de7
2 files changed
core/shared/platform/common/math/math.c
@@ -330,11 +330,6 @@ typedef union {
330
} while (0)
331
#endif
332
333
-#define isnan(x) \
334
- (sizeof(x) == sizeof(double) ? isnan_double((double)x) : isnan_float(x))
335
-#define signbit(x) \
336
- (sizeof(x) == sizeof(double) ? signbit_double((double)x) : signbit_float(x))
337
-
338
#ifdef __FDLIBM_STDC__
339
static const double huge = 1.0e300;
340
#else
tests/unit/aot/aot_test.cc
@@ -4,7 +4,6 @@
4
*/
5
6
#include <limits.h>
7
-#include <math.h>
8
#include "gtest/gtest.h"
9
#include "wasm_export.h"
10
#include "bh_platform.h"
0 commit comments