Skip to content

[Shared-Everything] ArrayRMW and ArrayCmpxchg #7632

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

Merged
merged 35 commits into from
Jun 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
work
  • Loading branch information
kripken committed May 29, 2025
commit a98365d2ac34cac20a8c976a2995ec9be1488121
2 changes: 0 additions & 2 deletions src/wasm/wasm-stack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,6 @@ void BinaryInstWriter::visitArrayRMW(ArrayRMW* curr) {
}
parent.writeMemoryOrder(curr->order, /*isRMW=*/true);
parent.writeIndexedHeapType(curr->ref->type.getHeapType());
o << U32LEB(curr->index);
}

void BinaryInstWriter::visitArrayCmpxchg(ArrayCmpxchg* curr) {
Expand All @@ -2592,7 +2591,6 @@ void BinaryInstWriter::visitArrayCmpxchg(ArrayCmpxchg* curr) {
<< U32LEB(BinaryConsts::ArrayAtomicRMWCmpxchg);
parent.writeMemoryOrder(curr->order, /*isRMW=*/true);
parent.writeIndexedHeapType(curr->ref->type.getHeapType());
o << U32LEB(curr->index);
}

void BinaryInstWriter::visitRefAs(RefAs* curr) {
Expand Down