summary refs log tree commit diff
path: root/lisc/test/fix1.ssa
blob: 7876d2bbce97ee7a17810be84adee2d93bb6ce2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function $test {
@start
	%x =w copy 1
@loop
	jnz %x, @noz, @isz
@noz
	%x =w copy 0
	jmp @end
@isz
	%x =w copy 1
	jmp @loop
@end
	%z =w add 10, %x
	ret
}