summaryrefslogtreecommitdiff
path: root/test/ctor-eval/memory-init.wast
blob: bef35c7e0ff12a2c2124ed1c4389cca3dcc01e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(module
  (memory $0 1)
  (data (i32.const 0) "__________")
  (data (i32.const 20) "__________")
  (func $test1 (export "test1")
    ;; A store that can be evalled.
    (i32.store8
      (i32.const 4)
      (i32.const 100)
    )

    ;; A memory init cannot be evalled since ctor-eval flattens memory segments
    ;; atm. We lose the identity of them as a result as they are all merged
    ;; into a single big segment. We could fix that eventually.
    (memory.init 1
      (i32.const 0)
      (i32.const 0)
      (i32.const 1)
    )
  )
)