i64.store32
i64.store32 writes bytes into linear memory.
core0x3E
Syntax
i64.store32
Stack Effect
[address i32, value] -> []Opcode
- Hex
0x3E- Decimal
62- Bytes
[0x3e]- Encoding
0x3E <memarg:memarg>- Immediates
memarg:memarg— alignment hint and offset (two u32 LEB128 values)
- Category
- memory
Browser Support
Core WebAssembly instruction.
Validation Rules
- Operands and result types must match the instruction signature.
- The instruction must appear in a valid structured control context.
Common Mistakes
- Using the instruction with the wrong operand type.
- Forgetting that WAT validation is stack-typed.
(func $example
;; i64.store32 example
)