File: imported2.wast.out

package info (click to toggle)
binaryen 68-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,900 kB
  • sloc: cpp: 57,351; ansic: 3,562; python: 2,898; sh: 700; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 424 bytes parent folder | download
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 $0 (func))
 (memory $0 256 256)
 (data (i32.const 10) "wasa waka waka waka waka")
 (global $mine (mut i32) (i32.const 1))
 (export "test2" (func $test2))
 (export "test3" (func $test3))
 (func $test2 (; 0 ;) (type $0)
  (global.set $mine
   (i32.const 2)
  )
  (i32.store8
   (i32.const 13)
   (i32.const 115)
  )
 )
 (func $test3 (; 1 ;) (type $0)
  (i32.store8
   (i32.const 14)
   (i32.const 115)
  )
 )
)