Skip to content

Commit

Permalink
Remove redundant EXPORTED_RUNTIME_METHODS settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke authored and Hood committed Jun 26, 2021
1 parent d157223 commit 6c80325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm32/ffi.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ ffi_call, (ffi_cif * cif, ffi_fp fn, void *rvalue, void **avalue),
// Warning: returns a truncated 32-bit integer directly.
// High bits are in $tempRet0
DEREF_I32(rvalue, 0) = result;
DEREF_I32(rvalue, 1) = Module.getTempRet0();
DEREF_I32(rvalue, 1) = getTempRet0();
#endif
break;
case FFI_TYPE_COMPLEX:
Expand Down

0 comments on commit 6c80325

Please sign in to comment.