summary refs log tree commit diff
path: root/lisc/test/fix1.ssa
blob: d0695c987b5dd318c943b1647bae4f291de41a25 (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
}