Skip to content

Commit 2762de7

Browse files
committed
some update
1 parent 722fc66 commit 2762de7

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

core/shared/platform/common/math/math.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,6 @@ typedef union {
330330
} while (0)
331331
#endif
332332

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-
338333
#ifdef __FDLIBM_STDC__
339334
static const double huge = 1.0e300;
340335
#else

tests/unit/aot/aot_test.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55

66
#include <limits.h>
7-
#include <math.h>
87
#include "gtest/gtest.h"
98
#include "wasm_export.h"
109
#include "bh_platform.h"

0 commit comments

Comments
 (0)