mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
add a simple function call test
This commit is contained in:
parent
f8d922b27c
commit
391c9ea201
16
lisc/test/puts10.ssa
Normal file
16
lisc/test/puts10.ssa
Normal file
@ -0,0 +1,16 @@
|
||||
function $test {
|
||||
@start
|
||||
%y =l alloc4 4
|
||||
%y1 =l add %y, 1
|
||||
storeb 0, %y1
|
||||
@loop
|
||||
%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
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user