Skip to content
New issue

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

Fix typo in execution of array.copy #546

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions document/core/exec/instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1217,13 +1217,13 @@ Reference Instructions

a. Push the value :math:`\REFARRAYADDR~a_1` to the stack.

b. Assert: due to the earlier check against the memory size, :math:`d+n-1 < 2^{32}`.
b. Assert: due to the earlier check against the array size, :math:`d+n-1 < 2^{32}`.

c. Push the value :math:`\I32.\CONST~(d+n-1)` to the stack.

d. Push the value :math:`\REFARRAYADDR~a_2` to the stack.

e. Assert: due to the earlier check against the memory size, :math:`s+n-1 < 2^{32}`.
e. Assert: due to the earlier check against the array size, :math:`s+n-1 < 2^{32}`.

f. Push the value :math:`\I32.\CONST~(s+n-1)` to the stack.

Expand Down
Loading