diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-12 23:04:20 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:33 -0400 |
commit | 391c9ea2013e14d6d1e2c595034a55488c5acd83 (patch) | |
tree | bd58baeec5912161316ccf7666b6465f6589db70 /lisc | |
parent | f8d922b27cf83162f2d84b9b6743a201f01c6237 (diff) | |
download | roux-391c9ea2013e14d6d1e2c595034a55488c5acd83.tar.gz |
add a simple function call test
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/test/puts10.ssa | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisc/test/puts10.ssa b/lisc/test/puts10.ssa new file mode 100644 index 0000000..04f4e6e --- /dev/null +++ b/lisc/test/puts10.ssa @@ -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 +} |