init fell into the ssa tap, fixed

reducing and assuming the same register, buuh
adds a transfer instruction that can hopefully be removed by analysis
This commit is contained in:
2020-03-15 10:39:09 +02:00
parent 5b0c1195e4
commit 3145547315
6 changed files with 20 additions and 17 deletions

View File

@ -22,7 +22,8 @@ module SlotMachine
save_message( builder )
builder.build do
message << message[:return_value]
message.reduce_int(false) #hack, noo type check
int = message.reduce_int(false) #hack, noo type check
message << int
add_code Risc::Syscall.new("emit_syscall(exit)", :exit )
end
end