Implement i64.div and i64.rem intrinsics (#1375)

This commit is contained in:
Huang Qi
2022-08-12 11:09:06 +08:00
committed by GitHub
parent 88cf1e36c1
commit 2178787664
4 changed files with 108 additions and 4 deletions

View File

@ -106,6 +106,10 @@ typedef struct {
REG_SYM(aot_intrinsic_f32_to_f64), \
REG_SYM(aot_intrinsic_f32_cmp), \
REG_SYM(aot_intrinsic_f64_cmp), \
REG_SYM(aot_intrinsic_i64_div_s), \
REG_SYM(aot_intrinsic_i64_div_u), \
REG_SYM(aot_intrinsic_i64_rem_s), \
REG_SYM(aot_intrinsic_i64_rem_u), \
#define REG_COMMON_SYMBOLS \
REG_SYM(aot_set_exception_with_id), \