Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created March 15, 2018 18:44
Show Gist options
  • Save gskachkov/f780a047271964e905c46ab21df47047 to your computer and use it in GitHub Desktop.
Save gskachkov/f780a047271964e905c46ab21df47047 to your computer and use it in GitHub Desktop.
(module
(table 0 anyfunc)
(memory $0 1)
(export "memory" (memory $0))
(export "_Z4calcii" (func $_Z4calcii))
(func $_Z4calcii (; 0 ;) (param $0 i32) (param $1 i32) (result i32)
(i32.mul
(select
(i32.const 5)
(get_local $1)
(i32.gt_s
(get_local $0)
(i32.const 10)
)
)
(get_local $0)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment