diff options
| author | bd-912 <bdunahu@colostate.edu> | 2024-04-10 23:40:25 -0600 | 
|---|---|---|
| committer | bd-912 <bdunahu@colostate.edu> | 2024-04-10 23:40:25 -0600 | 
| commit | 1080b37bbe40fe56b919d22804c159cccdca3c95 (patch) | |
| tree | 8ddbb9528f575e537f925b266c8f366be6acc8b7 /boil/tests/MoreThan4.opt.vapor | |
| parent | 61a28b7f8e709d1884ccab15f0dc38ed19dfde70 (diff) | |
Library rename, created A4 directories
Diffstat (limited to 'boil/tests/MoreThan4.opt.vapor')
| -rw-r--r-- | boil/tests/MoreThan4.opt.vapor | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/boil/tests/MoreThan4.opt.vapor b/boil/tests/MoreThan4.opt.vapor new file mode 100644 index 0000000..a59d1b5 --- /dev/null +++ b/boil/tests/MoreThan4.opt.vapor @@ -0,0 +1,27 @@ + +const empty_MT4 + + +func Main() +  t.0 = call :MT4.Start(:empty_MT4 1 2 3 4 5 6) +  PrintIntS(t.0) +  ret + +func MT4.Start(this p1 p2 p3 p4 p5 p6) +  PrintIntS(p1) +  PrintIntS(p2) +  PrintIntS(p3) +  PrintIntS(p4) +  PrintIntS(p5) +  PrintIntS(p6) +  aux = call :MT4.Change(this p6 p5 p4 p3 p2 p1) +  ret aux + +func MT4.Change(this p1 p2 p3 p4 p5 p6) +  PrintIntS(p1) +  PrintIntS(p2) +  PrintIntS(p3) +  PrintIntS(p4) +  PrintIntS(p5) +  PrintIntS(p6) +  ret 0 | 
