diff options
| author | Quentin Carbonneaux <[email protected]> | 2016-03-27 15:00:45 -0400 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2016-03-27 15:00:45 -0400 |
| commit | 36635660b40573f6a0c19d50dfdd9277589030de (patch) | |
| tree | a1b4463f7260462c314bd8d7cb35b3d199143f33 /test/loop.ssa | |
| parent | aad52241c88ad5327a8488c66dc906c8393c9c92 (diff) | |
extract tests out of src
Diffstat (limited to 'test/loop.ssa')
| -rw-r--r-- | test/loop.ssa | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/loop.ssa b/test/loop.ssa new file mode 100644 index 0000000..c8c4ee0 --- /dev/null +++ b/test/loop.ssa @@ -0,0 +1,23 @@ +# simple looping program +# sums all integers from 100 to 0 + +function $test() { +@start + +@loop + %s =w phi @start 0, @loop %s1 + %n =w phi @start 100, @loop %n1 + %s1 =w add %s, %n + %n1 =w sub %n, 1 + jnz %n1, @loop, @end + +@end + storew %s1, $a + ret +} + +# >>> driver +# extern void test(void); +# int a; +# int main() { test(); return !(a == 5050); } +# <<< |
