summary refs log tree commit diff
path: root/test/_rpo.ssa
blob: a10c6b1a0403800d30830862f9790c3ee105d43b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
function $test() {
@start
	jmp @foo
@baz
	jnz 1, @end, @foo
@bar
	jmp @end
@foo
	jnz 0, @bar, @baz
@end
	ret
}