Files
wasmtime/cranelift/filetests/filetests/verifier/memory.clif
lazypassion 747ad3c4c5 moved crates in lib/ to src/, renamed crates, modified some files' text (#660)
moved crates in lib/ to src/, renamed crates, modified some files' text (#660)
2019-01-28 15:56:54 -08:00

17 lines
293 B
Plaintext

test verifier
function %cycle() {
gv0 = load.i32 notrap aligned gv1 ; error: global value cycle: [gv0, gv1]
gv1 = load.i32 notrap aligned gv0-32
ebb1:
return
}
function %self_cycle() {
gv0 = load.i32 notrap aligned gv0 ; error: global value cycle: [gv0]
ebb1:
return
}