File: consume-stacky.wasm.fromBinary

package info (click to toggle)
binaryen 99-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 31,352 kB
  • sloc: cpp: 134,831; javascript: 61,839; ansic: 12,369; python: 4,620; pascal: 441; sh: 72; asm: 27; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
 (type $none_=>_i32 (func (result i32)))
 (memory $0 1 1)
 (func $0 (result i32)
  (local $0 i32)
  (local.set $0
   (i32.const 1)
  )
  (i32.store
   (i32.const 2)
   (i32.const 3)
  )
  (local.get $0)
 )
)