Files
wasmtime/cranelift/filetests/filetests/domtree/basic.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

25 lines
469 B
Plaintext

test domtree
function %test(i32) {
block0(v0: i32):
jump block1 ; dominates: block1
block1:
brif v0, block2, block3 ; dominates: block2 block3
block2:
jump block3
block3:
return
}
; check: cfg_postorder:
; sameln: block3
; sameln: block2
; sameln: block1
; sameln: block0
; check: domtree_preorder {
; nextln: block0: block1
; nextln: block1: block2 block3
; nextln: block2:
; nextln: block3:
; nextln: }