summary refs log tree commit diff
path: root/lisc/test/spill2.ssa
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/test/spill2.ssa')
-rw-r--r--lisc/test/spill2.ssa22
1 files changed, 22 insertions, 0 deletions
diff --git a/lisc/test/spill2.ssa b/lisc/test/spill2.ssa
new file mode 100644
index 0000000..b312295
--- /dev/null
+++ b/lisc/test/spill2.ssa
@@ -0,0 +1,22 @@
+# make sure comparisons
+# never get their two
+# operands in memory
+# run with NReg == 3, or
+# adapt it!
+
+@start
+	%a =w copy 0
+	%b =w copy 0
+
+@loop
+	%c =w phi @start 0, @loop %f
+	%d =w phi @start 0, @loop %g
+	%e =w phi @start 0, @loop %h
+	%f =w add %c, %d
+	%g =w add %c, %e
+	%h =w add %e, %d
+	%x =w csle %a, %b
+	jnz %x, @loop, @end
+@end
+	ret
+