large test changes due to change in cc

calling convention does affect
less than before, but still a LOT
This commit is contained in:
Torsten Ruger
2018-08-12 15:02:23 +03:00
parent fee9e261a5
commit 86462e238a
27 changed files with 335 additions and 415 deletions

View File

@ -15,7 +15,7 @@ module Risc
RegToSlot, Branch, SlotToReg, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, RegToSlot, Branch, RegToSlot,
SlotToReg, SlotToReg, SlotToReg, FunctionReturn, Transfer,
SlotToReg, SlotToReg, Branch, Syscall, NilClass]
SlotToReg, SlotToReg, Syscall, NilClass]
assert_equal 15 , get_return
end
@ -41,7 +41,7 @@ module Risc
assert_equal Transfer , transfer.class
end
def test_sys
sys = main_ticks(24)
sys = main_ticks(23)
assert_equal Syscall , sys.class
end
end