Files
wasmtime/cranelift/filetests/filetests/verifier/bad_layout.clif
Trevor Elliott a5698cedf8 cranelift: Remove brz and brnz (#5630)
Remove the brz and brnz instructions, as their behavior is now redundant with brif.
2023-01-30 20:34:56 +00:00

22 lines
428 B
Plaintext

test verifier
function %test_1(i32) {
block0(v0: i32):
return ; error: terminator
return
}
function %test_2(i32) {
block0(v0: i32):
jump block2 ; error: a terminator instruction was encountered before the end of block0
brif v0, block2, block3
block2:
jump block3
block3:
return
}
function %test_3(i32) { ; Ok
block0(v0: i32):
return
}