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