summaryrefslogtreecommitdiff
path: root/test/passes/memory-packing_all-features_zero-filled-memory.wast
blob: 34291cc7f05397f4f1e800a3e33c3496c0b54537 (plain)
1
2
3
4
5
6
(module
 ;; we can optimize on an imported memory with zeroFilledMemory being set.
 (import "env" "memory" (memory $0 1 1))
 (data (i32.const 1024) "x")
 (data (i32.const 1023) "\00")
)