We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce two modules which translate:
Overview: https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md
As an example, replace all memcpy's with the following function:
memcpy
(func (param $dst i32) (param $src i32) (param $size i32) (result i32) get_local $dst get_local $src get_local $size memory.copy get_local $dst)
Or for the reverse direction: replace the use of memory.copy with memcpy.
memory.copy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Introduce two modules which translate:
Overview: https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md
As an example, replace all
memcpy
's with the following function:Or for the reverse direction: replace the use of
memory.copy
withmemcpy
.The text was updated successfully, but these errors were encountered: