summaryrefslogtreecommitdiff
path: root/lisc/test
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/test')
-rw-r--r--lisc/test/double.ssa18
1 files changed, 18 insertions, 0 deletions
diff --git a/lisc/test/double.ssa b/lisc/test/double.ssa
new file mode 100644
index 0000000..da60261
--- /dev/null
+++ b/lisc/test/double.ssa
@@ -0,0 +1,18 @@
+function $test() {
+@start
+ %x1 =d copy `0.3
+ %x2 =d sub %x1, `0.2
+ %x3 =d sub %x2, `0.1
+
+@loop
+ %x4 =d phi @start %x3, @loop %x5
+ %i1 =w phi @start 0, @loop %i2
+ %x5 =d add %x4, %x4
+ %i2 =w add %i1, 1
+ %c0 =d csle %x5, `1
+ jnz %c0, @loop, @end
+
+@end
+ storew %i2, $a
+ ret
+}