libqbe/test/_rpo.ssa

13 lines
111 B
Text
Raw Normal View History

2015-09-18 12:27:50 -04:00
function $test() {
2015-09-14 18:06:29 -04:00
@start
2015-07-15 18:01:38 -04:00
jmp @foo
2015-09-14 18:06:29 -04:00
@baz
jnz 1, @end, @foo
2015-09-14 18:06:29 -04:00
@bar
2015-07-15 18:01:38 -04:00
jmp @end
2015-09-14 18:06:29 -04:00
@foo
jnz 0, @bar, @baz
2015-09-14 18:06:29 -04:00
@end
2015-07-15 18:01:38 -04:00
ret
}