libqbe/lisc/test/puts10.ssa

17 lines
244 B
Text
Raw Normal View History

2015-09-18 12:27:50 -04:00
function $test() {
2015-09-12 23:04:20 -04:00
@start
%y =l alloc4 4
%y1 =l add %y, 1
storeb 0, %y1
2015-09-18 12:27:50 -04:00
@loop
2015-09-12 23:04:20 -04:00
%n =w phi @start 0, @loop %n1
%c =w add %n, 48
storeb %c, %y
%r =w call $puts(l %y)
%n1 =w add %n, 1
%cmp =w csle %n1, 9
jnz %cmp, @loop, @end
@end
ret
}