Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
undo stray change
  • Loading branch information
tlively committed Aug 21, 2024
commit 69d4a074a42c7ba3516e08606c2d17aeca9415bc
2 changes: 1 addition & 1 deletion src/wasm/wasm-binary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4741,7 +4741,7 @@ Index WasmBinaryReader::readMemoryAccess(Address& alignment, Address& offset) {
rawAlignment = rawAlignment & ~(1 << 6);
}

if (rawAlignment >= 8) {
if (rawAlignment > 8) {
throwError("Alignment must be of a reasonable size");
}

Expand Down