From 67f611fbef3cf16162867bdf83cb9c8a051dac4a Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Thu, 3 Mar 2016 11:55:13 -0500 Subject: testbed is now functional I would like to make sure some _ tests are passing, however I have to think of a nice way to grab debug output and compare it nicely. Some require NReg == 3, that is a pain in the ass. Maybe they can be changed to work for the full register set. --- lisc/test/_spill1.ssa | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lisc/test/_spill1.ssa (limited to 'lisc/test/_spill1.ssa') diff --git a/lisc/test/_spill1.ssa b/lisc/test/_spill1.ssa new file mode 100644 index 0000000..df5e4c2 --- /dev/null +++ b/lisc/test/_spill1.ssa @@ -0,0 +1,22 @@ +# test with NReg == 3 +# there must be a spill +# happening on %c +# +# if you replace the sub +# by an add or comment +# the two marked lines +# there should be no +# spill +# + +function $test() { +@start + %f =w copy 0 # here + %b =w copy 1 + %c =w copy 2 + %a =w sub %b, %c + %d =w copy %b + %e =w copy %f # and there + %g =w copy %a + ret +} -- cgit 1.4.1