libqbe/test/_fix2.ssa

16 lines
166 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-08-01 18:17:06 -04:00
%x =w copy 1
2015-09-14 18:06:29 -04:00
@loop
jnz %x, @noz, @isz
2015-09-14 18:06:29 -04:00
@noz
2015-08-01 18:17:06 -04:00
%x =w copy 0
jnz %x, @loop, @end
2015-09-14 18:06:29 -04:00
@isz
2015-08-01 18:17:06 -04:00
%x =w copy 1
2015-07-15 16:44:59 -04:00
jmp @loop
2015-09-14 18:06:29 -04:00
@end
2015-08-01 18:17:06 -04:00
%z =w add 10, %x
2015-07-15 16:44:59 -04:00
ret
}