summaryrefslogtreecommitdiff
path: root/test/ctor-eval/bad-indirect-call.wast.out
blob: 27c84970142de5c6e7d47a250da756fb596a160f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(module
 (type $v (func))
 (table 1 1 anyfunc)
 (elem (i32.const 0) $call-indirect)
 (memory $0 256 256)
 (data (i32.const 0) "\00\00\00\00\00\00\00\00\00\00waka waka waka waka waka")
 (export "test1" (func $test1))
 (func $test1 (type $v)
  (call_indirect $v
   (i32.const 1)
  )
  (i32.store8
   (i32.const 20)
   (i32.const 120)
  )
 )
 (func $call-indirect (type $v)
  (i32.store8
   (i32.const 40)
   (i32.const 67)
  )
 )
)