Files
wasmtime/cranelift/tests/parser/tiny.cton
2016-07-05 13:45:15 -07:00

15 lines
236 B
Plaintext

; The smallest possible function.
function minimal() {
ebb0:
trap
}
; Create and use values.
; Polymorphic instructions with type suffix.
function ivalues() {
ebb0:
v0 = iconst.i32 2
v1 = iconst.i8 6
v2 = ishl v0, v1
}