Skip to content

Commit bb56b77

Browse files
committed
fix float to double implicit conversion
1 parent 7de224a commit bb56b77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/iwasm/interpreter/wasm_interp_classic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5697,7 +5697,7 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
56975697
true);
56985698
break;
56995699
case WASM_OP_I64_TRUNC_SAT_U_F64:
5700-
DEF_OP_TRUNC_SAT_F64(-1.0f, 18446744073709551616.0,
5700+
DEF_OP_TRUNC_SAT_F64(-1.0, 18446744073709551616.0,
57015701
false, false);
57025702
break;
57035703
#if WASM_ENABLE_BULK_MEMORY != 0

0 commit comments

Comments
 (0)